| 1 | <?php declare(strict_types=1); |
||
| 10 | final class JsonDecodeHandler |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var LoopInterface |
||
| 14 | */ |
||
| 15 | private $loop; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param LoopInterface $loop |
||
| 19 | */ |
||
| 20 | public function __construct(LoopInterface $loop) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param JsonDecodeCommand $command |
||
| 27 | * @return PromiseInterface |
||
| 28 | */ |
||
| 29 | public function handle(JsonDecodeCommand $command): PromiseInterface |
||
| 35 | } |
||
| 36 |