diff options
Diffstat (limited to 'app/Formatter/BoardSwimlaneFormatter.php')
-rw-r--r-- | app/Formatter/BoardSwimlaneFormatter.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Formatter/BoardSwimlaneFormatter.php b/app/Formatter/BoardSwimlaneFormatter.php index 17710fc3..c2f5a3b5 100644 --- a/app/Formatter/BoardSwimlaneFormatter.php +++ b/app/Formatter/BoardSwimlaneFormatter.php @@ -97,8 +97,8 @@ class BoardSwimlaneFormatter extends BaseFormatter implements FormatterInterface $this->calculateStatsByColumnAcrossSwimlanes($swimlane['columns']); } - foreach($this->swimlanes as &$swimlane) { - foreach($swimlane['columns'] as $columnIndex => &$column) { + foreach ($this->swimlanes as &$swimlane) { + foreach ($swimlane['columns'] as $columnIndex => &$column) { $column['column_nb_tasks'] = $this->swimlanes[0]['columns'][$columnIndex]['column_nb_tasks']; $column['column_nb_score'] = $this->swimlanes[0]['columns'][$columnIndex]['column_score']; } |