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, ]; /**