Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
18 | final class Nullsy extends AbstractOperation |
||
19 | { |
||
20 | /** |
||
21 | * @var array{0: null, 1: array<mixed>, 2: int, 3: bool, 4: string} |
||
22 | */ |
||
23 | public const VALUES = [null, [], 0, false, '']; |
||
24 | |||
25 | /** |
||
26 | * @return Closure(iterable<TKey, T>): Generator<int, bool> |
||
27 | */ |
||
28 | 8 | public function __invoke(): Closure |
|
38 |