1 | <?php declare(strict_types=1); |
||
11 | final class JsonDecodeService |
||
12 | { |
||
13 | /** |
||
14 | * @var LoopInterface |
||
15 | */ |
||
16 | private $loop; |
||
17 | |||
18 | /** |
||
19 | * @param LoopInterface $loop |
||
20 | */ |
||
21 | 4 | public function __construct(LoopInterface $loop) |
|
25 | |||
26 | public function decode(string $input): CancellablePromiseInterface |
||
32 | } |
||
33 |