Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
musicjukebox.overlookedtracks.com
/
vendor
/
laravel
/
horizon
/
src
/
Contracts
/
Editing: Pausable.php
<?php namespace Laravel\Horizon\Contracts; interface Pausable { /** * Pause the process. * * @return void */ public function pause(); /** * Instruct the process to continue working. * * @return void */ public function continue(); }
Save
Cancel