<?php
namespace IlluminateConsoleEvents;
use IlluminateConsoleSchedulingEvent;
class ScheduledTaskFinished
{
/**
* Create a new event instance.
*
* @param IlluminateConsoleSchedulingEvent $task The scheduled event that ran.
* @param float $runtime The runtime of the scheduled event.
*/
public function __construct(
public Event $task,
public float $runtime,
) {
}
}