File "Pause.php"
Full Path: /var/www/drive/laravel/horizon/src/SupervisorCommands/Pause.php
File size: 332 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon\SupervisorCommands;
use Laravel\Horizon\Contracts\Pausable;
class Pause
{
/**
* Process the command.
*
* @param \Laravel\Horizon\Contracts\Pausable $pausable
* @return void
*/
public function process(Pausable $pausable)
{
$pausable->pause();
}
}