| Conditions | 6 |
| Paths | 6 |
| Total Lines | 23 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | function free($value) |
||
| 38 | { |
||
| 39 | if (is_null($value)) { |
||
| 40 | return true; |
||
| 41 | } |
||
| 42 | |||
| 43 | if (is_string($value)) { |
||
| 44 | return trim($value) === ''; |
||
| 45 | } |
||
| 46 | |||
| 47 | if (is_numeric($value)) { |
||
| 48 | return false; |
||
| 49 | } |
||
| 50 | |||
| 51 | if (is_bool($value)) { |
||
| 52 | return true; |
||
| 53 | } |
||
| 54 | |||
| 55 | if ($value instanceof Countable) { |
||
| 56 | return count($value) === 0; |
||
| 57 | } |
||
| 58 | |||
| 59 | return empty($value); |
||
| 60 | } |
||
| 61 |