Total Complexity | 2 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class UpdateUserRequest extends FormRequest |
||
11 | { |
||
12 | /** |
||
13 | * Determine if the user is authorized to make this request. |
||
14 | */ |
||
15 | public function authorize() |
||
16 | { |
||
17 | return $this->user()->can('update', User::find($this->route('setting'))); |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * Get the validation rules that apply to the request |
||
22 | */ |
||
23 | public function rules() |
||
32 | ] |
||
33 | ]; |
||
36 |