| 1 | <?php declare(strict_types=1); |
||
| 10 | final class JsonDecodeService implements ServiceInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var LoopInterface |
||
| 14 | */ |
||
| 15 | private $loop; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param LoopInterface $loop |
||
| 19 | */ |
||
| 20 | public function __construct(LoopInterface $loop) |
||
| 24 | |||
| 25 | public function handle($input): CancellablePromiseInterface |
||
| 31 | } |
||
| 32 |