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