| Total Complexity | 2 | 
| Total Lines | 22 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 12 | class PasswordGrantProxyControllerRequest extends FormRequest  | 
            ||
| 13 | { | 
            ||
| 14 | /**  | 
            ||
| 15 | * Determine if the user is authorized to make this request.  | 
            ||
| 16 | *  | 
            ||
| 17 | * @return bool  | 
            ||
| 18 | */  | 
            ||
| 19 | public function authorize()  | 
            ||
| 20 |     { | 
            ||
| 21 | return true;  | 
            ||
| 22 | }  | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * Get the validation rules that apply to the request.  | 
            ||
| 26 | *  | 
            ||
| 27 | * @return array  | 
            ||
| 28 | */  | 
            ||
| 29 | public function rules()  | 
            ||
| 34 | ];  | 
            ||
| 35 | }  | 
            ||
| 38 |