| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 5 | 
| CRAP Score | 2 | 
| Changes | 0 | ||
| 1 | <?php | ||
| 27 | 153 | public function __invoke($subject, string $field): bool | |
| 28 |     { | ||
| 29 | 153 |         if ($this->flags === null) { | |
| 30 | 153 | $this->flags = FILTER_FLAG_IPV4 | FILTER_FLAG_IPV6; | |
| 31 | } | ||
| 32 | 153 | $value = $subject->$field; | |
| 33 | |||
| 34 | 153 | return filter_var($value, FILTER_VALIDATE_IP, $this->flags) !== false; | |
| 35 | } | ||
| 36 | } | ||
| 37 |