Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class OauthRequest extends Request |
||
8 | { |
||
9 | |||
10 | protected $redirectRoute = 'admin.login.form'; |
||
11 | |||
12 | |||
13 | /** |
||
14 | * Include route parameters for validation |
||
15 | * |
||
16 | * @return array |
||
17 | */ |
||
18 | public function all($keys = null) |
||
25 | |||
26 | } |
||
27 | |||
28 | /** |
||
29 | * Gets the validation rules that apply to the request. |
||
30 | * |
||
31 | * @return array |
||
32 | */ |
||
33 | public function rules() |
||
46 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.