| 1 | <?php |
||
| 19 | class DateTimeBetween extends DateTimeComparator { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Holds the amount of parameters. |
||
| 23 | */ |
||
| 24 | protected $amountOfParameters = 2; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Holds the type of the validator. |
||
| 28 | */ |
||
| 29 | protected $type = 'dateTimeBetween'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | protected function compare($date, array $datetimes) { |
||
| 37 | |||
| 38 | } |
||
| 39 |