Total Complexity | 4 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
9 | abstract class AbstractAttributeItem extends Item implements AttributeItem |
||
10 | { |
||
11 | /** |
||
12 | * @var string|null |
||
13 | */ |
||
14 | protected $fixed; |
||
15 | |||
16 | /** |
||
17 | * @var string|null |
||
18 | */ |
||
19 | protected $default; |
||
20 | |||
21 | public function getFixed(): ?string |
||
24 | } |
||
25 | |||
26 | public function setFixed(string $fixed): void |
||
27 | { |
||
28 | $this->fixed = $fixed; |
||
29 | } |
||
30 | |||
31 | public function getDefault(): ?string |
||
32 | { |
||
33 | return $this->default; |
||
34 | } |
||
35 | |||
36 | public function setDefault(string $default): void |
||
39 | } |
||
40 | } |
||
41 |