Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
laravel
/
horizon
/
src
/
Console
:
ListCommand.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Laravel\Horizon\Console; use Illuminate\Console\Command; use Laravel\Horizon\Contracts\MasterSupervisorRepository; use Symfony\Component\Console\Attribute\AsCommand; #[AsCommand(name: 'horizon:list')] class ListCommand extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'horizon:list'; /** * The console command description. * * @var string */ protected $description = 'List all of the deployed machines'; /** * Execute the console command. * * @param \Laravel\Horizon\Contracts\MasterSupervisorRepository $masters * @return void */ public function handle(MasterSupervisorRepository $masters) { $masters = $masters->all(); if (empty($masters)) { return $this->components->info('No machines are running.'); } $this->output->writeln(''); $this->table([ 'Name', 'PID', 'Supervisors', 'Status', ], collect($masters)->map(function ($master) { return [ $master->name, $master->pid, $master->supervisors ? collect($master->supervisors)->map(function ($supervisor) { return explode(':', $supervisor, 2)[1]; })->implode(', ') : 'None', $master->status, ]; })->all()); $this->output->writeln(''); } }