Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class ImmutableBooleanMap extends AbstractTypedArray |
||
10 | { |
||
11 | 11 | protected function typeToEnforce(): string |
|
12 | { |
||
13 | 11 | return self::SCALAR_BOOLEAN; |
|
14 | } |
||
15 | |||
16 | 2 | protected function isMutable(): bool |
|
17 | { |
||
18 | 2 | return false; |
|
19 | } |
||
20 | |||
21 | 11 | protected function collectionType(): string |
|
24 | } |
||
25 | } |
||
26 |