ExampleEvent.php 278 B

12345678910111213141516171819
  1. <?php
  2. namespace App\Events;
  3. use Illuminate\Support\Facades\Log;
  4. class ExampleEvent extends Event
  5. {
  6. /**
  7. * Create a new event instance.
  8. *
  9. * @return void
  10. */
  11. public function __construct()
  12. {
  13. //
  14. Log::info('事件执行了');
  15. }
  16. }