@@ -85,7 +85,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -20,9 +20,9 @@ |
||
| 20 | 20 | { |
| 21 | 21 | use _generated\AcceptanceTesterActions; |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * Define custom actions here |
|
| 25 | - */ |
|
| 23 | + /** |
|
| 24 | + * Define custom actions here |
|
| 25 | + */ |
|
| 26 | 26 | /** |
| 27 | 27 | * @Given There is no task named :arg1 |
| 28 | 28 | */ |