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

namespace Illuminate\Console\Events;

use Illuminate\Console\Scheduling\Event;

class ScheduledTaskSkipped
{
    /**
     * The scheduled event being run.
     *
     * @var \Illuminate\Console\Scheduling\Event
     */
    public $task;

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