| Total Complexity | 1 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | final class NeverEmpty |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @param mixed $value The validated value. |
||
| 28 | * @param bool $isAttributeMissing A flag defining whether the attribute is missing (not used / not passed at all). |
||
| 29 | * |
||
| 30 | * @return bool Whether the validated value is considered empty. |
||
| 31 | */ |
||
| 32 | public function __invoke(mixed $value, bool $isAttributeMissing): bool |
||
| 37 |