| Conditions | 2 |
| Paths | 4 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function isValid($input, array $context = []): bool |
||
| 18 | { |
||
| 19 | try { |
||
| 20 | $now = new DateTimeImmutable(); |
||
| 21 | $datetime = new DateTimeImmutable($input); |
||
| 22 | $format = self::CURRENT_YEAR; |
||
| 23 | return $datetime->format($format) === $now->format($format); |
||
| 24 | } catch (Throwable) { |
||
| 25 | return false; |
||
| 26 | } |
||
| 29 |