| Total Complexity | 1 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 19 | class Slug extends Regexp |
||
| 20 | { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Holds the amount of parameters. |
||
| 24 | */ |
||
| 25 | protected $amountOfParameters = 0; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Holds the type of the validator. |
||
| 29 | */ |
||
| 30 | protected $type = 'slug'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * {@inheritdoc} |
||
| 34 | */ |
||
| 35 | 1 | protected function isValidComparison($value, $parameters) |
|
| 41 |