EventServiceProvider.php 855 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Providers;
  3. use App\Http\Utils\BaseUtil;
  4. use Illuminate\Support\Facades\Event;
  5. use Illuminate\Auth\Events\Registered;
  6. use Illuminate\Auth\Listeners\SendEmailVerificationNotification;
  7. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  8. class EventServiceProvider extends ServiceProvider
  9. {
  10. /**
  11. * The event listener mappings for the application.
  12. *
  13. * @var array
  14. */
  15. protected $listen = [
  16. Registered::class => [
  17. SendEmailVerificationNotification::class,
  18. ],
  19. ];
  20. /**
  21. * Register any events for your application.
  22. *
  23. * @return void
  24. */
  25. public function boot()
  26. {
  27. parent::boot();
  28. //监听sql
  29. BaseUtil::listenSql();
  30. //定义常量
  31. define("BASE_AUTH_URL",env("BASE_AUTH_URL"));
  32. }
  33. }