From 49478a1ba3cebd6011cf68e19988988af2e8aa52 Mon Sep 17 00:00:00 2001 From: kbond Date: Mon, 5 Jun 2023 22:01:05 +0000 Subject: [PATCH] bot: fix cs [skip ci] --- src/Command/ScheduleListCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Command/ScheduleListCommand.php b/src/Command/ScheduleListCommand.php index ec9b1f1..79868fb 100644 --- a/src/Command/ScheduleListCommand.php +++ b/src/Command/ScheduleListCommand.php @@ -184,7 +184,7 @@ private function renderTable(Schedule $schedule, SymfonyStyle $io, bool $withIds if ($withIds) { $rows[] = [ // Additional row to prevent new line null, - new TableCell($this->getHelper('formatter')->truncate($task->getDescription(), 120), ['colspan' => 4]) + new TableCell($this->getHelper('formatter')->truncate($task->getDescription(), 120), ['colspan' => 4]), ]; $rows[] = new TableSeparator(); } @@ -192,7 +192,7 @@ private function renderTable(Schedule $schedule, SymfonyStyle $io, bool $withIds if ($withIds) { // Remove last table separator - array_pop($rows); + \array_pop($rows); } $taskIssues = \array_merge([], ...$taskIssues);