Total Complexity | 1 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class YamlProperties |
||
13 | { |
||
14 | public ?bool $_hasDocStart = null; // null = no docstart, true = docstart before document comments, false = docstart after document comments |
||
15 | |||
16 | public array $_anchors = []; |
||
17 | |||
18 | public array $_comments = []; |
||
19 | |||
20 | public array $_tags = []; |
||
21 | |||
22 | public int $_options; |
||
23 | |||
24 | public ?string $value = null; |
||
25 | |||
26 | /** |
||
27 | * Creates API object to be used for the document provided as argument |
||
28 | * |
||
29 | * @param int $buildingOptions the YamlObject as the target for all methods call that needs it |
||
30 | */ |
||
31 | public function __construct(int $buildingOptions) |
||
36 |