Passed
Pull Request — develop (#11)
by
unknown
03:46 queued 56s
created

UpdateRequest   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 8
dl 0
loc 35
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A attributes() 0 5 1
A rules() 0 5 1
A authorize() 0 3 1
1
<?php
2
3
namespace App\Http\Requests\Course;
4
5
use Illuminate\Validation\Validator;
6
use Illuminate\Foundation\Http\FormRequest;
7
8
class UpdateRequest extends FormRequest
9
{
10
    /**
11
     * Determine if the user is authorized to make this request.
12
     *
13
     * @return bool
14
     */
15
    public function authorize()
16
    {
17
        return true;
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
            'group_min' => 'required|numeric|min:0',
29
            'group_max' => 'required|numeric|greater_or_equal_than_field:group_min',
30
        ];
31
    }
32
33
    /**
34
     * Get custom attributes for validator errors.
35
     *
36
     * @return array
37
     */
38
    public function attributes()
39
    {
40
        return [
41
            'group_min' => 'minimum allowed group size',
42
            'group_max' => 'maximum allowed group size',
43
        ];
44
    }
45
}
46