Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
laravel
/
horizon
/
src
/
Console
/
Editing: PauseCommand.php
<?php namespace Laravel\Horizon\Console; use Illuminate\Console\Command; use Illuminate\Support\Arr; use Illuminate\Support\Str; use Laravel\Horizon\Contracts\MasterSupervisorRepository; use Laravel\Horizon\MasterSupervisor; class PauseCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'horizon:pause'; /** * The console command description. * * @var string */ protected $description = 'Pause the master supervisor'; /** * Execute the console command. * * @param \Laravel\Horizon\Contracts\MasterSupervisorRepository $masters * @return void */ public function handle(MasterSupervisorRepository $masters) { $masters = collect($masters->all())->filter(function ($master) { return Str::startsWith($master->name, MasterSupervisor::basename()); })->all(); foreach (Arr::pluck($masters, 'pid') as $processId) { $this->info("Sending USR2 Signal To Process: {$processId}"); if (! posix_kill($processId, SIGUSR2)) { $this->error("Failed to kill process: {$processId} (".posix_strerror(posix_get_last_error()).')'); } } } }
Save
Cancel