| Total Complexity | 2 | 
| Total Lines | 21 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 20 | class CreateTypeRequest extends FormRequest  | 
            ||
| 21 | { | 
            ||
| 22 | |||
| 23 | /**  | 
            ||
| 24 | * Determine if the user is authorized to make this request.  | 
            ||
| 25 | *  | 
            ||
| 26 | * @return bool  | 
            ||
| 27 | */  | 
            ||
| 28 | public function authorize()  | 
            ||
| 29 |     { | 
            ||
| 30 | return true;  | 
            ||
| 31 | }  | 
            ||
| 32 | |||
| 33 | /**  | 
            ||
| 34 | * Get the validation rules that apply to the request.  | 
            ||
| 35 | *  | 
            ||
| 36 | * @return array  | 
            ||
| 37 | */  | 
            ||
| 38 | public function rules()  | 
            ||
| 41 | }  | 
            ||
| 42 | }  | 
            ||
| 43 |