File "Scale.php"

Full Path: /var/www/drive/laravel/horizon/src/SupervisorCommands/Scale.php
File size: 388 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Horizon\SupervisorCommands;

use Laravel\Horizon\Supervisor;

class Scale
{
    /**
     * Process the command.
     *
     * @param  \Laravel\Horizon\Supervisor  $supervisor
     * @param  array  $options
     * @return void
     */
    public function process(Supervisor $supervisor, array $options)
    {
        $supervisor->scale($options['scale']);
    }
}