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