Conditions | 7 |
Paths | 4 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 7 |
Changes | 0 |
1 | <?php |
||
8 | 2 | public function __invoke($value): bool |
|
9 | { |
||
10 | 2 | if ($value === null) { |
|
11 | 1 | return false; |
|
12 | } |
||
13 | |||
14 | 2 | if (is_string($value) && trim($value) === '') { |
|
15 | 1 | return false; |
|
16 | } |
||
17 | |||
18 | 2 | if ((is_array($value) || $value instanceof \Countable) && count($value) < 1) { |
|
|
|||
19 | 1 | return false; |
|
20 | } |
||
21 | |||
22 | 1 | return true; |
|
23 | } |
||
24 | } |
||
25 |