%PDF- %PDF-
| Direktori : /home/graphicd/public_html/vebto/vendor/laravel/horizon/src/SupervisorCommands/ |
| Current File : /home/graphicd/public_html/vebto/vendor/laravel/horizon/src/SupervisorCommands/ContinueWorking.php |
<?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();
}
}