File "Balance.php"
Full Path: /var/www/drive/laravel/horizon/src/SupervisorCommands/Balance.php
File size: 383 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon\SupervisorCommands;
use Laravel\Horizon\Supervisor;
class Balance
{
/**
* Process the command.
*
* @param \Laravel\Horizon\Supervisor $supervisor
* @param array $options
* @return void
*/
public function process(Supervisor $supervisor, array $options)
{
$supervisor->balance($options);
}
}