File "Terminable.php"
Full Path: /var/www/drive/laravel/horizon/src/Contracts/Terminable.php
File size: 215 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Laravel\Horizon\Contracts;
interface Terminable
{
/**
* Terminate the process.
*
* @param int $status
* @return void
*/
public function terminate($status = 0);
}