Total Complexity | 4 |
Total Lines | 47 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class SkillScaleRequest extends FormRequest |
||
8 | { |
||
9 | /** |
||
10 | * Determine if the user is authorized to make this request. |
||
11 | * |
||
12 | * @return bool |
||
13 | */ |
||
14 | public function authorize() |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Get the validation rules that apply to the request. |
||
22 | * |
||
23 | * @return array |
||
24 | */ |
||
25 | public function rules() |
||
26 | { |
||
27 | return [ |
||
28 | 'name' => 'required|max:255|unique:skill_scales', |
||
29 | 'shortname' => 'required|max:8|unique:skill_scales', |
||
30 | 'value' => 'required|numeric|between:0,1', |
||
31 | ]; |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * Get the validation attributes that apply to the request. |
||
36 | * |
||
37 | * @return array |
||
38 | */ |
||
39 | public function attributes() |
||
40 | { |
||
41 | return [ |
||
42 | // |
||
43 | ]; |
||
44 | } |
||
45 | |||
46 | /** |
||
47 | * Get the validation messages that apply to the request. |
||
48 | * |
||
49 | * @return array |
||
50 | */ |
||
51 | public function messages() |
||
54 | // |
||
55 | ]; |
||
56 | } |
||
58 |