Conditions | 2 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | protected function evaluate($input, array $context = []): bool |
||
22 | { |
||
23 | try { |
||
24 | $now = new DateTimeImmutable(); |
||
25 | $datetime = new DateTimeImmutable($input); |
||
26 | |||
27 | return $datetime->format(self::TODAY_FORMAT) === $now->format(self::TODAY_FORMAT); |
||
28 | } catch (Throwable) { |
||
29 | return false; |
||
30 | } |
||
33 |