Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Client implements Rule |
||
8 | { |
||
9 | /** |
||
10 | * Create a new rule instance. |
||
11 | * |
||
12 | * @return void |
||
13 | */ |
||
14 | public function __construct() |
||
15 | { |
||
16 | // |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Determine if the validation rule passes. |
||
21 | * |
||
22 | * @param string $attribute |
||
23 | * @param mixed $value |
||
24 | * @return bool |
||
25 | */ |
||
26 | public function passes($attribute, $value) |
||
28 | // |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Get the validation error message. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function message() |
||
39 | } |
||
40 | } |
||
41 |