Passed
Push — master ( 9fdafe...783d3e )
by Martin
02:30
created
src/Cli/CliBundle/Command/TaskListCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
         /** @var Task $task */
86 86
         foreach ($remainingTasks as $task) {
87
-            $output->writeln(' - ' . $task->getName() . '');
87
+            $output->writeln(' - '.$task->getName().'');
88 88
         }
89 89
 
90 90
         $output->writeln('');
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $completedTasks = $this->taskQuery->getAllCompletedTasks();
95 95
 
96 96
         foreach ($completedTasks as $task) {
97
-            $output->writeln(' - ' . $task->getName());
97
+            $output->writeln(' - '.$task->getName());
98 98
         }
99 99
     }
100 100
 
Please login to merge, or discard this patch.
src/Web/FrontendBundle/Controller/TaskController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -201,7 +201,7 @@  discard block
 block discarded – undo
201 201
             } catch (\LogicException $e) {
202 202
                 throw $e;
203 203
             }
204
-            return $this->redirectToRoute('task.update', [ 'taskId' => $taskId ]);
204
+            return $this->redirectToRoute('task.update', ['taskId' => $taskId]);
205 205
         }
206 206
 
207 207
 
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
             } catch (\LogicException $e) {
217 217
                 throw $e;
218 218
             }
219
-            return $this->redirectToRoute('task.update', [ 'taskId' => $taskId ]);
219
+            return $this->redirectToRoute('task.update', ['taskId' => $taskId]);
220 220
         }
221 221
 
222 222
         $updateTaskForm->handleRequest($request);
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
                 } catch (\LogicException $e) {
238 238
                     throw $e;
239 239
                 }
240
-                return $this->redirectToRoute('task.update', [ 'taskId' => $taskId ]);
240
+                return $this->redirectToRoute('task.update', ['taskId' => $taskId]);
241 241
             } catch (\LogicException $e) {
242 242
                 throw $e;
243 243
             }
@@ -256,7 +256,7 @@  discard block
 block discarded – undo
256 256
                 } catch (\LogicException $e) {
257 257
                     throw $e;
258 258
                 }
259
-                return $this->redirectToRoute('task.update', [ 'taskId' => $taskId ]);
259
+                return $this->redirectToRoute('task.update', ['taskId' => $taskId]);
260 260
             }
261 261
 
262 262
             $session->getFlashBag()->set('form_name', null);
@@ -276,7 +276,7 @@  discard block
 block discarded – undo
276 276
                 } catch (\LogicException $e) {
277 277
                     throw $e;
278 278
                 }
279
-                return $this->redirectToRoute('task.update', [ 'taskId' => $taskId ]);
279
+                return $this->redirectToRoute('task.update', ['taskId' => $taskId]);
280 280
             }
281 281
         }
282 282
 
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
                 } catch (\LogicException $e) {
290 290
                     throw $e;
291 291
                 }
292
-                return $this->redirectToRoute('task.update', [ 'taskId' => $taskId ]);
292
+                return $this->redirectToRoute('task.update', ['taskId' => $taskId]);
293 293
             }
294 294
         }
295 295
 
Please login to merge, or discard this patch.