Edit File: StoppableClient.php
<?php namespace Laravel\Octane\Contracts; interface StoppableClient extends Client { /** * Stop the underlying server / worker. * * @return void */ public function stop(): void; }
Back to File Manager