Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
27 | class AuthServiceProvider extends ServiceProvider |
||
28 | { |
||
29 | /** |
||
30 | * The policy mappings for the application. |
||
31 | * |
||
32 | * @var array |
||
33 | */ |
||
34 | protected $policies = [ |
||
35 | // 'App\Model' => 'App\Policies\ModelPolicy', |
||
36 | ]; |
||
37 | |||
38 | /** |
||
39 | * Register any authentication / authorization services. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | 33 | public function boot(): void |
|
48 |