Skip to content

Commit

Permalink
πŸ’₯ Change - renamed scan:certificate to scan:certificates
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenMelbz committed May 25, 2020
1 parent 307b33d commit 1d1ca1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Console/Commands/ScanCertificateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class ScanCertificateCommand extends Command
*
* @var string
*/
protected $signature = 'scan:certificate';
protected $signature = 'scan:certificates';

/**
* The console command description.
Expand Down
2 changes: 1 addition & 1 deletion app/Console/Kernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 1d1ca1c

Please sign in to comment.