EventServiceProvider.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Facades\Event;
  4. use Illuminate\Auth\Events\Registered;
  5. use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
  6. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  7. class EventServiceProvider extends ServiceProvider
  8. {
  9. /**
  10. * The event listener mappings for the application.
  11. *
  12. * @var array
  13. */
  14. protected $listen = [
  15. Registered::class => [
  16. SendEmailVerificationNotification::class,
  17. ],
  18. 'App\Events\TipSend' => [
  19. 'App\Listeners\TipSendListeners',
  20. ],
  21. 'App\Events\FinishAccount' => [
  22. 'App\Listeners\FinishAccountListeners',
  23. ],
  24. 'App\Events\RetailOutboundEvent' => [
  25. 'App\Listeners\RetailOutboundListener',
  26. ],
  27. 'App\Events\AuthRefundTip' => [
  28. 'App\Listeners\AuthRefundTipListeners',
  29. ],
  30. 'App\Events\NewOrder' => [
  31. 'App\Listeners\NewOrderListeners',
  32. ],
  33. 'App\Events\CancelOrderEvent' => [
  34. 'App\Listeners\CancelOrderListener',
  35. ],
  36. ];
  37. /**
  38. * Register any events for your application.
  39. *
  40. * @return void
  41. */
  42. public function boot()
  43. {
  44. parent::boot();
  45. //
  46. }
  47. }