62 lines
1.3 KiB
PHP
62 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Illuminate\Console\Scheduling;
|
|
|
|
use Illuminate\Console\Command;
|
|
|
|
class ScheduleFinishCommand extends Command
|
|
{
|
|
/**
|
|
* The console command name.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'schedule:finish {id}';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = 'Handle the completion of a scheduled command';
|
|
|
|
/**
|
|
* Indicates whether the command should be shown in the Artisan command list.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $hidden = true;
|
|
|
|
/**
|
|
* The schedule instance.
|
|
*
|
|
* @var \Illuminate\Console\Scheduling\Schedule
|
|
*/
|
|
protected $schedule;
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @param \Illuminate\Console\Scheduling\Schedule $schedule
|
|
* @return void
|
|
*/
|
|
public function __construct(Schedule $schedule)
|
|
{
|
|
$this->schedule = $schedule;
|
|
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Execute the console command.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
collect($this->schedule->events())->filter(function ($value) {
|
|
return $value->mutexName() == $this->argument('id');
|
|
})->each->callAfterCallbacks($this->laravel);
|
|
}
|
|
}
|