Completed
Push — 2.0 ( a01b26...e632ef )
by Nicolas
02:40
created

SettingRequest::authorize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php namespace Modules\Setting\Http\Requests;
2
3
use Illuminate\Foundation\Http\FormRequest;
4
5
class SettingRequest extends FormRequest
6
{
7
    public function rules()
8
    {
9
        return [];
10
    }
11
12
    public function authorize()
13
    {
14
        return true;
15
    }
16
17
    public function messages()
18
    {
19
        return [];
20
    }
21
}
22