Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
peripherad
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Console
/
Events
:
ScheduledTaskFinished.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\Console\Events; use Illuminate\Console\Scheduling\Event; class ScheduledTaskFinished { /** * The scheduled event that ran. * * @var \Illuminate\Console\Scheduling\Event */ public $task; /** * The runtime of the scheduled event. * * @var float */ public $runtime; /** * Create a new event instance. * * @param \Illuminate\Console\Scheduling\Event $task * @param float $runtime * @return void */ public function __construct(Event $task, $runtime) { $this->task = $task; $this->runtime = $runtime; } }