1 | <?php |
||
4 | class Encoder |
||
5 | { |
||
6 | |||
7 | const RS = "\x1E"; |
||
8 | const LF = "\x0A"; |
||
9 | |||
10 | /** |
||
11 | * @var WriterInterface |
||
12 | */ |
||
13 | private $writer; |
||
14 | |||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | private $jsonEncodeOptions; |
||
19 | |||
20 | /** |
||
21 | * @var int |
||
22 | */ |
||
23 | private $jsonEncodeDepth; |
||
24 | |||
25 | 2 | public function __construct(WriterInterface $writer, int $options = 0, int $depth = 512) |
|
31 | |||
32 | 1 | public function emit($data): void |
|
37 | } |