| Total Complexity | 3 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 5 | class AlphaDash implements ValidateRuleInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Validates that the specified field only contains alpha-numeric characters, dashes, and underscores. |
||
| 9 | * |
||
| 10 | * @param $subject |
||
| 11 | * @param string $field |
||
| 12 | * |
||
| 13 | * @return bool |
||
| 14 | */ |
||
| 15 | 27 | public function __invoke($subject, string $field): bool |
|
| 25 |