From 1d1ca1c81cc2c96f02657bb46c7d8a8259df4781 Mon Sep 17 00:00:00 2001 From: Owen Melbourne Date: Mon, 25 May 2020 15:50:16 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A5=20Change=20-=20renamed=20scan:cert?= =?UTF-8?q?ificate=20to=20scan:certificates?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Commands/ScanCertificateCommand.php | 2 +- app/Console/Kernel.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Console/Commands/ScanCertificateCommand.php b/app/Console/Commands/ScanCertificateCommand.php index 71fdb52..e1fffc7 100644 --- a/app/Console/Commands/ScanCertificateCommand.php +++ b/app/Console/Commands/ScanCertificateCommand.php @@ -16,7 +16,7 @@ class ScanCertificateCommand extends Command * * @var string */ - protected $signature = 'scan:certificate'; + protected $signature = 'scan:certificates'; /** * The console command description. diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 751ac9d..f99a11e 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -32,7 +32,7 @@ protected function schedule(Schedule $schedule) $schedule->command('scan:uptime')->everyFiveMinutes()->withoutOverlapping()->runInBackground(); $schedule->command('scan:robots')->hourly()->withoutOverlapping()->runInBackground(); $schedule->command('scan:dns')->hourly()->withoutOverlapping()->runInBackground(); - $schedule->command('scan:certificate')->dailyAt('08:00:00')->withoutOverlapping()->runInBackground(); + $schedule->command('scan:certificates')->dailyAt('08:00:00')->withoutOverlapping()->runInBackground(); $schedule->command('scan:opengraph')->dailyAt('08:00:00')->withoutOverlapping()->runInBackground(); $schedule->command('scan:consoles')->daily()->withoutOverlapping(); $schedule->command('horizon:snapshot')->everyFiveMinutes();