Total Complexity | 2 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
9 | class AuthServiceProvider extends ServiceProvider |
||
10 | { |
||
11 | protected $policies = [ |
||
12 | Event::class => EventPolicy::class, |
||
13 | ]; |
||
14 | |||
15 | /** |
||
16 | * Bootstrap services. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | public function boot() |
||
21 | { |
||
22 | $this->registerPolicies(); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * Register services. |
||
27 | * |
||
28 | * @return void |
||
29 | */ |
||
30 | public function register() |
||
32 | // |
||
33 | } |
||
35 |