Total Complexity | 3 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class JsonDeserializationStrictVisitorFactory implements DeserializationVisitorFactory |
||
11 | { |
||
12 | /** |
||
13 | * @var int |
||
14 | */ |
||
15 | private $options = 0; |
||
16 | |||
17 | /** |
||
18 | * @var int |
||
19 | */ |
||
20 | private $depth = 512; |
||
21 | |||
22 | public function getVisitor(): DeserializationVisitorInterface |
||
25 | } |
||
26 | |||
27 | public function setOptions(int $options): self |
||
32 | } |
||
33 | |||
34 | public function setDepth(int $depth): self |
||
41 |