| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 25 | 36 | public function __invoke($subject, string $field): bool |
|
| 26 | { |
||
| 27 | 36 | $value = (string) $subject->$field; |
|
| 28 | 36 | $dateParts = $this->extractDateParts($value, $this->delimiterPattern, true); |
|
| 29 | |||
| 30 | 36 | return !is_null($dateParts) && checkdate($dateParts->month, $dateParts->day, $dateParts->year); |
|
| 31 | } |
||
| 33 |