View file vendor/laravel/framework/src/Illuminate/Console/Events/ArtisanStarting.php

File size: 426B
  1. <?php
  2.  
  3. namespace Illuminate\Console\Events;
  4.  
  5. class ArtisanStarting
  6. {
  7. /**
  8. * The Artisan application instance.
  9. *
  10. * @var \Illuminate\Console\Application
  11. */
  12. public $artisan;
  13.  
  14. /**
  15. * Create a new event instance.
  16. *
  17. * @param \Illuminate\Console\Application $artisan
  18. * @return void
  19. */
  20. public function __construct($artisan)
  21. {
  22. $this->artisan = $artisan;
  23. }
  24. }