From 8a7c96938db360af7cf2e49169240d4c875ca782 Mon Sep 17 00:00:00 2001 From: Helmut Hummel Date: Mon, 15 Feb 2021 18:13:44 +0100 Subject: [PATCH] [FEATYRE] Add default title for cli command tasks --- Classes/Task/CommandExecutor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Task/CommandExecutor.php b/Classes/Task/CommandExecutor.php index 5ab36cd..1abc6d7 100644 --- a/Classes/Task/CommandExecutor.php +++ b/Classes/Task/CommandExecutor.php @@ -39,7 +39,7 @@ public function run(Application $application, InputInterface $input = null, Outp public function getTitle(): ?string { - return null; + return 'Execute console command'; } public function getAdditionalInformation(): ?string