| Total Complexity | 5 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | #[Attribute(Attribute::TARGET_PROPERTY)] |
||
| 12 | class DateTimeLessThanOther extends AbstractValidation |
||
| 13 | { |
||
| 14 | public function __construct(private string $other, ?string $message = null) |
||
| 15 | { |
||
| 16 | parent::__construct($message ?? sprintf('The date/time should be less than %s', $this->other)); |
||
| 17 | } |
||
| 18 | |||
| 19 | protected function isValid($input, array $context = []): bool |
||
| 31 | } |
||
| 32 | } |
||
| 34 |