Total Complexity | 12 |
Total Lines | 49 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class FillHandler |
||
8 | { |
||
9 | private array $attributes = []; |
||
10 | |||
11 | private mixed $value = null; |
||
12 | private ?string $label = null; |
||
13 | |||
14 | |||
15 | 75 | public function __construct(mixed $value, mixed $label, bool $useTitleAsValue = false) |
|
40 | } |
||
41 | } |
||
42 | |||
43 | 75 | public function getAttributes(): array |
|
44 | { |
||
45 | 75 | return $this->attributes; |
|
46 | } |
||
47 | |||
48 | 75 | public function getValue(): ?string |
|
51 | } |
||
52 | |||
53 | 75 | public function getLabel(): ?string |
|
56 | } |
||
57 | } |
||
58 |