1 | <?php declare(strict_types=1); |
||
12 | final class JsonEncodeService |
||
13 | { |
||
14 | /** |
||
15 | * @var LoopInterface |
||
16 | */ |
||
17 | private $loop; |
||
18 | |||
19 | /** |
||
20 | * @param LoopInterface $loop |
||
21 | */ |
||
22 | public function __construct(LoopInterface $loop) |
||
26 | |||
27 | /** |
||
28 | * @param array $input |
||
29 | * @return CancellablePromiseInterface |
||
30 | */ |
||
31 | public function handle(array $input = []): CancellablePromiseInterface |
||
41 | } |
||
42 |