Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 2 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
15 | 3 | public function rules() |
|
16 | { |
||
17 | return [ |
||
18 | 3 | 'name' => 'required|string|max:255', |
|
19 | 'game_code' => 'sometimes|string|max:255|exists:games,code', |
||
20 | |||
21 | 'default_start_cmd_linux' => 'nullable|string|max:1000', |
||
22 | 'default_start_cmd_windows' => 'nullable|string|max:1000', |
||
23 | |||
24 | 'vars.*.var' => 'max:16', |
||
25 | 'vars.*.default' => 'max:64', |
||
26 | 'vars.*.info' => 'max:128', |
||
27 | 'vars.*.admin_var' => 'max:128', |
||
28 | |||
29 | 'fast_rcon.*.info' => 'max:32', |
||
30 | 'fast_rcon.*.command' => 'max:128', |
||
31 | ]; |
||
33 | } |