EventServiceProvider.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. 'App\Events\WaybillPriceModelEvent' => [
  16. 'App\Listeners\WaybillPriceModelListener',
  17. ],
  18. 'App\Events\WmsReceiveNewEvent' => [
  19. 'App\Listeners\WmsReceiveNewListener',
  20. ],
  21. 'App\Events\InformWMSReceivedEvent' => [
  22. 'App\Listeners\InformWMSReceivedListener',
  23. ],
  24. 'App\Events\CustomerStored' =>[
  25. 'App\Listeners\FulfillPackageCustomer'
  26. ],
  27. ];
  28. /**
  29. * Register any events for your application.
  30. *
  31. * @return void
  32. */
  33. public function boot()
  34. {
  35. parent::boot();
  36. //
  37. }
  38. }