| 1 | <?php |
||
| 10 | class CheckSslCertificates extends BaseCommand |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * The name and signature of the console command. |
||
| 14 | * |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | protected $signature = 'uptime-monitor:check-ssl'; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * The console command description. |
||
| 21 | * |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | protected $description = 'Check the ssl certificates of all sites'; |
||
| 25 | |||
| 26 | public function handle() |
||
| 50 | } |
||
| 51 |