From f9fc24dd0426de1601e4ba80010403b902145b02 Mon Sep 17 00:00:00 2001 From: Jonny Barnes Date: Sat, 17 Sep 2016 21:01:23 +0100 Subject: [PATCH] Give the redownload command a better name --- .../{DownloadWebMentions.php => ReDownloadWebMentions.php} | 4 ++-- app/Console/Kernel.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename app/Console/Commands/{DownloadWebMentions.php => ReDownloadWebMentions.php} (89%) diff --git a/app/Console/Commands/DownloadWebMentions.php b/app/Console/Commands/ReDownloadWebMentions.php similarity index 89% rename from app/Console/Commands/DownloadWebMentions.php rename to app/Console/Commands/ReDownloadWebMentions.php index 4b9a8701..12622fa3 100644 --- a/app/Console/Commands/DownloadWebMentions.php +++ b/app/Console/Commands/ReDownloadWebMentions.php @@ -6,14 +6,14 @@ use App\WebMention; use Illuminate\Console\Command; use App\Jobs\DownloadWebMention; -class DownloadWebMentions extends Command +class ReDownloadWebMentions extends Command { /** * The name and signature of the console command. * * @var string */ - protected $signature = 'webmentions:download'; + protected $signature = 'webmentions:redownload'; /** * The console command description. diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index affc9de7..51ec553b 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -15,7 +15,7 @@ class Kernel extends ConsoleKernel protected $commands = [ Commands\SecurityCheck::class, Commands\ParseCachedWebMentions::class, - Commands\DownloadWebMentions::class, + Commands\ReDownloadWebMentions::class, ]; /**