File "ContinueWorking.php"

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

<?php

namespace Laravel\Horizon\SupervisorCommands;

use Laravel\Horizon\Contracts\Pausable;

class ContinueWorking
{
    /**
     * Process the command.
     *
     * @param  \Laravel\Horizon\Contracts\Pausable  $pausable
     * @return void
     */
    public function process(Pausable $pausable)
    {
        $pausable->continue();
    }
}