Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function messages() |
||
33 | { |
||
34 | return [ |
||
35 | 'url.required' => 'Url field cannot be blank', |
||
36 | 'url.max' => 'Url cannot be more than 200 characters', |
||
37 | 'url.url' => 'The url format is invalid. Format expected - http(s)://(www).domain.com', |
||
38 | 'recaptcha' => 'The :attribute field is not correct.', |
||
39 | ]; |
||
40 | } |
||
41 | } |
||
42 |