Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpnamespace Illuminate\Console\Events;use Illuminate\Console\Scheduling\Event;class ScheduledTaskStarting{/*** 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;}}