Test Failed
Push — master ( faf208...51c6fd )
by Martin
14:25
created
src/Cli/CliBundle/Command/TaskListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
         /** @var Task $task */
77 77
         foreach ($remainingTasks as $task) {
78
-            $output->writeln(' - ' . $task->getName());
78
+            $output->writeln(' - '.$task->getName());
79 79
         }
80 80
 
81 81
         $output->writeln('');
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
         /** @var Task $task */
88 88
         foreach ($completedTasks as $task) {
89
-            $output->writeln(' - ' . $task->getName());
89
+            $output->writeln(' - '.$task->getName());
90 90
         }
91 91
     }
92 92
 
Please login to merge, or discard this patch.