| Total Complexity | 4 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 75% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | final class MixedDataSet implements DataSetInterface |
||
| 13 | { |
||
| 14 | private mixed $value; |
||
| 15 | |||
| 16 | 40 | public function __construct(mixed $value) |
|
| 19 | } |
||
| 20 | |||
| 21 | 2 | public function getAttributeValue(string $attribute): mixed |
|
| 22 | { |
||
| 23 | 2 | return null; |
|
| 24 | } |
||
| 25 | |||
| 26 | 37 | public function getData(): mixed |
|
| 29 | } |
||
| 30 | |||
| 31 | public function hasAttribute(string $attribute): bool |
||
| 36 |