Skip to content

Commit

Permalink
bot: fix cs [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
kbond committed Jun 5, 2023
1 parent 6b3389e commit 49478a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Command/ScheduleListCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,15 @@ 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();
}
}

if ($withIds) {
// Remove last table separator
array_pop($rows);
\array_pop($rows);
}

$taskIssues = \array_merge([], ...$taskIssues);
Expand Down

0 comments on commit 49478a1

Please sign in to comment.