| 1 | <?php |
||
| 17 | class Alphabetical extends Regexp { |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Holds the amount of parameters. |
||
| 21 | */ |
||
| 22 | protected $amountOfParameters = 0; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * Holds the type of the validator. |
||
| 26 | */ |
||
| 27 | protected $type = 'alphabetical'; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * {@inheritdoc} |
||
| 31 | */ |
||
| 32 | protected function isValidComparison($value, $parameters) { |
||
| 36 | } |
||
| 37 |