You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
722 B

7 years ago
7 years ago
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Facades\Event;
  4. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  5. class EventServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * The event listener mappings for the application.
  9. *
  10. * @var array
  11. */
  12. protected $listen = [
  13. 'App\Events\Event' => [
  14. 'App\Listeners\EventListener',
  15. ],
  16. // 订单发货
  17. 'App\Events\OrderShipped' => [
  18. // 发送发货通知
  19. 'App\Listeners\SendShipmentNotification',
  20. ],
  21. ];
  22. /**
  23. * Register any events for your application.
  24. *
  25. * @return void
  26. */
  27. public function boot()
  28. {
  29. parent::boot();
  30. //
  31. }
  32. }