Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
10 | class AuthServiceProvider extends ServiceProvider |
||
11 | { |
||
12 | /** |
||
13 | * The policy mappings for the application. |
||
14 | * |
||
15 | * @var array |
||
16 | */ |
||
17 | protected $policies=[]; |
||
18 | |||
19 | /** |
||
20 | * The forbidden doamins that cannot register NOJ. |
||
21 | * |
||
22 | * @var array |
||
23 | */ |
||
24 | protected $forbiddenDomains=['temporary.email']; |
||
25 | |||
26 | /** |
||
27 | * Register any authentication / authorization services. |
||
28 | * |
||
29 | * @return void |
||
30 | */ |
||
31 | public function boot() |
||
41 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.