From eabc076fea323a60d533b5a3480bc6793aafe6e6 Mon Sep 17 00:00:00 2001 From: Kevin Papst Date: Thu, 29 Jun 2023 22:40:39 +0200 Subject: [PATCH] fix description is empty --- src/Command/BaseCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/BaseCommand.php b/src/Command/BaseCommand.php index 56f84a0..d298fef 100644 --- a/src/Command/BaseCommand.php +++ b/src/Command/BaseCommand.php @@ -193,7 +193,7 @@ protected function getSelectedTimesheet(SymfonyStyle $io, array $timesheets): ?T return null; } - protected function updateTimesheet(SymfonyStyle $io, TimesheetCollectionExpanded $timesheet, ?bool $description = false, ?bool $tags = false): void + protected function updateTimesheet(SymfonyStyle $io, TimesheetCollectionExpanded $timesheet, bool|string|null $description = false, bool|string|null $tags = false): void { $form = new TimesheetEditForm();