• File: ArtisanStarting.php
  • Full Path: /home/masbinta/public_html/core/vendor/laravel/framework/src/Illuminate/Console/Events/ArtisanStarting.php
  • File size: 426 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Illuminate\Console\Events;

class ArtisanStarting
{
    /**
     * The Artisan application instance.
     *
     * @var \Illuminate\Console\Application
     */
    public $artisan;

    /**
     * Create a new event instance.
     *
     * @param  \Illuminate\Console\Application  $artisan
     * @return void
     */
    public function __construct($artisan)
    {
        $this->artisan = $artisan;
    }
}