Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
44 | public function rules(): array |
||
45 | { |
||
46 | return [ |
||
47 | 'country_id' => 'integer|nullable', |
||
48 | 'language_id' => 'required|integer', |
||
49 | 'script_id' => 'required|integer', |
||
50 | 'code' => 'required|string|max:11|unique:locales', |
||
51 | 'native' => 'required|string', |
||
52 | 'currency_symbol_first' => 'boolean', |
||
53 | ]; |
||
56 |