Total Complexity | 3 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
6 | class TexturesProperty extends Property { |
||
7 | |||
8 | /** |
||
9 | * @var string|null |
||
10 | */ |
||
11 | private $signature; |
||
12 | |||
13 | 3 | public function __construct(array $prop) { |
|
14 | 3 | parent::__construct($prop); |
|
15 | 3 | $this->signature = $prop['signature'] ?? null; |
|
16 | 3 | } |
|
17 | |||
18 | 2 | public function getTextures(): TexturesPropertyValue { |
|
20 | } |
||
21 | |||
22 | 2 | public function getSignature(): ?string { |
|
27 |