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