| Total Complexity | 2 |
| Total Lines | 34 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 17 | class EventServiceProvider extends ServiceProvider |
||
| 18 | { |
||
| 19 | protected $listen = [ |
||
| 20 | \FaithGen\SDK\Events\Ministry\Profile\ImageSaved::class => [ |
||
| 21 | \FaithGen\SDK\Listeners\Ministry\Profile\ImageSaved\ProcessImage::class, |
||
| 22 | \FaithGen\SDK\Listeners\Ministry\Profile\ImageSaved\S3Upload::class, |
||
| 23 | ], |
||
| 24 | ]; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Bootstrap services. |
||
| 28 | * |
||
| 29 | * @return void |
||
| 30 | */ |
||
| 31 | public function boot() |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * Register services. |
||
| 46 | * |
||
| 47 | * @return void |
||
| 48 | */ |
||
| 49 | public function register() |
||
| 54 |