| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class Request 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 | * @param Validator $validator |
||
| 22 | */ |
||
| 23 | public function withValidator(Validator $validator) |
||
| 27 | } |
||
| 28 | } |
||
| 30 |