Total Complexity | 4 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | #[Attribute(Attribute::TARGET_PROPERTY)] |
||
12 | class CurrentMonth extends AbstractValidation |
||
13 | { |
||
14 | const CURRENT_MONTH = 'm'; |
||
15 | const CURRENT_MONTH_SAME_YEAR = 'Y-m'; |
||
16 | |||
17 | public function __construct(private bool $sameYear = true, ?string $message = 'The date/time should be today') |
||
18 | { |
||
19 | parent::__construct($message); |
||
20 | } |
||
21 | |||
22 | protected function evaluate($input, array $context = []): bool |
||
31 | } |
||
32 | } |
||
34 |