Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class ValidCamelCase implements Rule |
||
8 | { |
||
9 | /** |
||
10 | * Check value is camel case. |
||
11 | * |
||
12 | * @param string $attribute |
||
13 | * @param mixed $value |
||
14 | * @return bool |
||
15 | */ |
||
16 | public function passes($attribute, $value) |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * Get the validation error message. |
||
23 | * |
||
24 | * @return string |
||
25 | */ |
||
26 | public function message() |
||
29 | } |
||
30 | } |