1 | <?php |
||
5 | class DeleteUptimeMonitor extends Command |
||
6 | { |
||
7 | /** |
||
8 | * The name and signature of the console command. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $signature = 'uptime-monitor:delete'; |
||
13 | |||
14 | /** |
||
15 | * The console command description. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $description = 'Create an uptime monitor'; |
||
20 | |||
21 | public function handle() |
||
25 | } |
||
26 |