| Total Complexity | 2 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 7 | class EventServiceProvider extends ServiceProvider |
||
| 8 | { |
||
| 9 | protected $listen = [ |
||
| 10 | \FaithGen\Gallery\Events\Album\Created::class => [ |
||
| 11 | \FaithGen\Gallery\Listeners\Album\Created\MessageFollowUsers::class, |
||
| 12 | ], |
||
| 13 | ]; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Bootstrap services. |
||
| 17 | * |
||
| 18 | * @return void |
||
| 19 | */ |
||
| 20 | public function boot() |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Register services. |
||
| 27 | * |
||
| 28 | * @return void |
||
| 29 | */ |
||
| 30 | public function register() |
||
| 35 |