From 53c124a01fdb9c4b7ede27245453c63fa802572d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vi=CC=81ctor=20Falco=CC=81n?= Date: Wed, 17 Dec 2025 12:36:57 +0100 Subject: [PATCH] chore(commands): unify command signatures --- app/Console/Commands/SendTestEmails.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SendTestEmails.php b/app/Console/Commands/SendTestEmails.php index 248805a8..80f2585f 100644 --- a/app/Console/Commands/SendTestEmails.php +++ b/app/Console/Commands/SendTestEmails.php @@ -13,7 +13,7 @@ use Illuminate\Support\Facades\Mail; class SendTestEmails extends Command { - protected $signature = 'emails:test {email : The email address to send all test emails to}'; + protected $signature = 'email:test {email : The email address to send all test emails to}'; protected $description = 'Send all application emails to a specific email address for testing';