1 | <?php |
||
21 | final class CustomJsonConverter implements JsonConverterInterface |
||
22 | { |
||
23 | /** |
||
24 | * @var int |
||
25 | */ |
||
26 | private $options; |
||
27 | |||
28 | /** |
||
29 | * CustomJsonConverter constructor. |
||
30 | */ |
||
31 | public function __construct() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | public function encode($payload): string |
||
43 | |||
44 | /** |
||
45 | * {@inheritdoc} |
||
46 | */ |
||
47 | public function decode(string $payload, bool $associativeArray = true) |
||
51 | } |
||
52 |