| 1 | <?php |
||
| 20 | class OlderThan extends DateTimeComparator { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Holds whether to parse the parameters as \DateTimes so the child class |
||
| 24 | * can decide. |
||
| 25 | */ |
||
| 26 | protected $parseParametersAsDateTimes = false; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Holds the type of the validator. |
||
| 30 | */ |
||
| 31 | protected $type = 'olderThan'; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * {@inheritdoc} |
||
| 35 | */ |
||
| 36 | protected function compare(\DateTime $date, array $datetimes, array $parameters) { |
||
| 40 | |||
| 41 | } |
||
| 42 |