Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
30 | public function rules() |
||
31 | { |
||
32 | return [ |
||
33 | 'tournament.name' => 'required|min:3|max:255', |
||
34 | 'tournament.description' => 'min:3|max:255', |
||
35 | 'tournament.type' => 'in:' . implode(',', Tournament::getAvailableTypes()), |
||
36 | 'tournament.membersType' => 'in:' . implode(',', Tournament::getAvailableMembersType()) |
||
37 | ]; |
||
38 | } |
||
39 | } |
||
40 |