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