From 058b4ac4b92ffa1adf9c96d9eb2115732e9a1ffe Mon Sep 17 00:00:00 2001 From: Deon George Date: Tue, 7 Jan 2025 11:13:31 +1100 Subject: [PATCH] Fix for 4bbb826 command syntax for Comm* commands was displaying incorrectly --- app/Console/Commands/CommBinkpSend.php | 4 ++-- app/Console/Commands/CommEMSISend.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Console/Commands/CommBinkpSend.php b/app/Console/Commands/CommBinkpSend.php index 39ae9e4..e17f154 100644 --- a/app/Console/Commands/CommBinkpSend.php +++ b/app/Console/Commands/CommBinkpSend.php @@ -17,8 +17,8 @@ class CommBinkpSend extends Command * @var string */ protected $signature = 'comm:binkp:send' - .'{--N|now : Dont queue}' - .'{ftn : FTN to Send to}'; + .' {--N|now : Dont queue}' + .' {ftn : FTN to Send to}'; /** * The console command description. diff --git a/app/Console/Commands/CommEMSISend.php b/app/Console/Commands/CommEMSISend.php index 975cd39..0b0f8df 100644 --- a/app/Console/Commands/CommEMSISend.php +++ b/app/Console/Commands/CommEMSISend.php @@ -17,8 +17,8 @@ class CommEMSISend extends Command * @var string */ protected $signature = 'comm:emsi:send' - .'{--N|now : Dont queue}' - .'{ftn : FTN to Send to}'; + .' {--N|now : Dont queue}' + .' {ftn : FTN to Send to}'; /** * The console command description.