Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function messages(): array |
||
38 | { |
||
39 | return [ |
||
40 | 'key.required' => 'Please enter a classification key.', |
||
41 | 'key.between' => 'The classification key must be between 2 and 6 characters long.', |
||
42 | 'key.alpha_dash' => 'The classification key may only use alphabetic characters and dashes.', |
||
43 | 'key.unique' => 'That classification key already exists.' |
||
44 | ]; |
||
47 |