Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
15 | abstract class ItemAbstract{ |
||
16 | |||
17 | /** @var string */ |
||
18 | public $Parent; |
||
19 | /** @var string */ |
||
20 | public $Name; |
||
21 | /** @var int */ |
||
22 | public $NameOffset; |
||
23 | |||
24 | /** |
||
25 | * ItemAbstract constructor. |
||
26 | * |
||
27 | * @param array $data |
||
28 | * @param string $parent |
||
29 | */ |
||
30 | public function __construct(array $data, string $parent){ |
||
40 |