| Total Complexity | 1 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 8 | class EventServiceProvider extends ServiceProvider |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * The event listener mappings for the application. |
||
| 12 | * |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $listen = [ |
||
| 16 | 'Hideyo\Ecommerce\Framework\Services\Order\Events\OrderChangeStatus' => [ |
||
| 17 | 'Hideyo\Ecommerce\Framework\Services\Order\Events\Handlers\HandleOrderStatusValidated', |
||
| 18 | 'Hideyo\Ecommerce\Framework\Services\Order\Events\Handlers\HandleOrderStatusEmail' |
||
| 19 | ], |
||
| 20 | ]; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Register any events for your application. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function boot() |
||
| 36 |