Passed
Push — master ( ec877f...169311 )
by Brice
04:38
created
src/Application/Console/ListTasks.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -146,7 +146,9 @@
 block discarded – undo
146 146
             // When no specific status is required in the command line,
147 147
             // then do not display `finished` tasks (this is arbitrary)
148 148
             if (is_null($this->status)) {
149
-                if (Status::FINISHED === $status) continue;
149
+                if (Status::FINISHED === $status) {
150
+                    continue;
151
+                }
150 152
             }
151 153
 
152 154
             $taskCount++;
Please login to merge, or discard this patch.