Passed
Push — master ( e91424...06fcec )
by Martin
06:44
created
src/Cli/CliBundle/Command/TaskCreateCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
         try {
92 92
             $task = $this->taskCommand->addNewTask($name);
93 93
 
94
-            $output->writeln('Task created with #' . $task->getId());
94
+            $output->writeln('Task created with #'.$task->getId());
95 95
         } catch (TaskNameIsEmptyException | TaskNameIsAlreadyExistedException | TaskCannotBeSavedException $e) {
96 96
             throw $e;
97 97
         }
Please login to merge, or discard this patch.
src/Cli/CliBundle/Command/TaskListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 
86 86
         /** @var Task $task */
87 87
         foreach ($remainingTasks as $task) {
88
-            $output->writeln($task->getId() . ' - ' . $task->getName() . '');
88
+            $output->writeln($task->getId().' - '.$task->getName().'');
89 89
         }
90 90
 
91 91
         $output->writeln('');
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
         $completedTasks = $this->taskQuery->getAllCompletedTasks();
96 96
 
97 97
         foreach ($completedTasks as $task) {
98
-            $output->writeln($task->getId() . ' - ' . $task->getName());
98
+            $output->writeln($task->getId().' - '.$task->getName());
99 99
         }
100 100
     }
101 101
 
Please login to merge, or discard this patch.