| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class CategoryRequest extends FormRequest |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * Determine if the user is authorized to make this request. |
||
| 12 | * |
||
| 13 | * @return bool |
||
| 14 | */ |
||
| 15 | 4 | public function authorize() |
|
| 16 | { |
||
| 17 | 4 | return $this->user()->can('hasAccess', 'Manage Equipment'); |
|
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Get the validation rules that apply to the request. |
||
| 22 | * |
||
| 23 | * @return array |
||
| 24 | */ |
||
| 25 | 4 | public function rules() |
|
| 32 | ] |
||
| 33 | ]; |
||
| 36 |