1 | <?php |
||
8 | class ValidateTagIds implements Rule |
||
9 | { |
||
10 | /** |
||
11 | * Determine if the validation rule passes. |
||
12 | * |
||
13 | * @param string $attribute |
||
14 | * @param mixed $value |
||
15 | * @return bool |
||
16 | */ |
||
17 | public function passes($attribute, $value) |
||
27 | |||
28 | /** |
||
29 | * Get the validation error message. |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function message() |
||
37 | } |
||
38 |