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