Файл: vendor/laravel/framework/src/Illuminate/Console/Events/ScheduledTaskFinished.php
Строк: 36
<?php
namespace IlluminateConsoleEvents;
use IlluminateConsoleSchedulingEvent;
class ScheduledTaskFinished
{
/**
* The scheduled event that ran.
*
* @var IlluminateConsoleSchedulingEvent
*/
public $task;
/**
* The runtime of the scheduled event.
*
* @var float
*/
public $runtime;
/**
* Create a new event instance.
*
* @param IlluminateConsoleSchedulingEvent $task
* @param float $runtime
* @return void
*/
public function __construct(Event $task, $runtime)
{
$this->task = $task;
$this->runtime = $runtime;
}
}