Completed
Push — master ( a5a753...454108 )
by Wachter
07:05
created
src/DependencyInjection/TaskExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $container->setParameter('task.system_tasks', $config['system_tasks']);
38 38
         $container->setParameter('task.storage', $config['storage']);
39 39
 
40
-        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
40
+        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
41 41
         $loader->load(sprintf('storage/%s.xml', $config['storage']));
42 42
         $loader->load('task_event_listener.xml');
43 43
         $loader->load('scheduler.xml');
Please login to merge, or discard this patch.
tests/Unit/Command/ScheduleSystemTasksCommandTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -161,7 +161,7 @@  discard block
 block discarded – undo
161 161
             $task->reveal()->getInterval(),
162 162
             $task->reveal()->getFirstExecution(),
163 163
             Argument::that(
164
-                function ($date) {
164
+                function($date) {
165 165
                     return $date <= new \DateTime('+1 Minute');
166 166
                 }
167 167
             )
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
             $task->reveal()->getInterval(),
271 271
             $task->reveal()->getFirstExecution(),
272 272
             Argument::that(
273
-                function ($date) {
273
+                function($date) {
274 274
                     return $date <= new \DateTime('+1 Minute');
275 275
                 }
276 276
             )
Please login to merge, or discard this patch.