File "Restart.php"

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

<?php

namespace Laravel\Horizon\SupervisorCommands;

use Laravel\Horizon\Contracts\Restartable;

class Restart
{
    /**
     * Process the command.
     *
     * @param  \Laravel\Horizon\Contracts\Restartable  $restartable
     * @return void
     */
    public function process(Restartable $restartable)
    {
        $restartable->restart();
    }
}