| 1 | <?php |
||
| 12 | class Run extends Command |
||
| 13 | { |
||
| 14 | use CanForce; |
||
| 15 | |||
| 16 | protected $client; |
||
| 17 | /** |
||
| 18 | * The name and signature of the console command. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | */ |
||
| 22 | protected $signature = 'uptime:run {--F|force}'; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * The console command description. |
||
| 26 | * |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | protected $description = 'Run The Whole Endpoint'; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * Create a new command instance. |
||
| 33 | * |
||
| 34 | * @param \GuzzleHttp\Client $client |
||
| 35 | */ |
||
| 36 | public function __construct(Client $client) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Execute the console command. |
||
| 44 | * |
||
| 45 | * @return mixed |
||
| 46 | */ |
||
| 47 | public function handle() |
||
| 63 | } |
||
| 64 |