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 | 2 | public function __construct(LoopInterface $loop) |
|
26 | |||
27 | /** |
||
28 | * @param array $input |
||
29 | * @return CancellablePromiseInterface |
||
30 | */ |
||
31 | 2 | public function encode(array $input): CancellablePromiseInterface |
|
41 | } |
||
42 |