File manager - Edit - /var/www/payraty/helpdesk/vendor/laravel/horizon/src/MasterSupervisorCommands/AddSupervisor.php
Back
<?php namespace Laravel\Horizon\MasterSupervisorCommands; use Laravel\Horizon\MasterSupervisor; use Laravel\Horizon\SupervisorOptions; use Laravel\Horizon\SupervisorProcess; use Symfony\Component\Process\Process; class AddSupervisor { /** * Process the command. * * @param \Laravel\Horizon\MasterSupervisor $master * @param array $options * @return void */ public function process(MasterSupervisor $master, array $options) { $options = SupervisorOptions::fromArray($options); $master->supervisors[] = new SupervisorProcess( $options, $this->createProcess($master, $options), function ($type, $line) use ($master) { $master->output($type, $line); } ); } /** * Create the Symfony process instance. * * @param \Laravel\Horizon\MasterSupervisor $master * @param \Laravel\Horizon\SupervisorOptions $options * @return \Symfony\Component\Process\Process */ protected function createProcess(MasterSupervisor $master, SupervisorOptions $options) { $command = $options->toSupervisorCommand(); return Process::fromShellCommandline($command, $options->directory ?? base_path()) ->setTimeout(null) ->disableOutput(); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.30 | Generation time: 0 |
proxy
|
phpinfo
|
Settings