Completed
Pull Request — master (#39)
by Wachter
06:48 queued 02:58
created
tests/app/TestKernel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
     protected function buildContainer()
50 50
     {
51 51
         $container = parent::buildContainer();
52
-        $loader = new XmlFileLoader($container, new FileLocator(__DIR__ . '/config'));
52
+        $loader = new XmlFileLoader($container, new FileLocator(__DIR__.'/config'));
53 53
         $loader->load('services.xml');
54 54
 
55 55
         $container->setParameter('kernel.storage', $this->storage);
Please login to merge, or discard this patch.
src/Command/DebugTasksCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
                     $execution->getHandlerClass(),
58 58
                     $execution->getScheduleTime()->format(\DateTime::RFC3339),
59 59
                     !$execution->getEndTime() ? '' : $execution->getEndTime()->format(\DateTime::RFC3339),
60
-                    (round($execution->getDuration(), 6) * 1000000) . 'ms',
60
+                    (round($execution->getDuration(), 6) * 1000000).'ms',
61 61
                 ]
62 62
             );
63 63
         }
Please login to merge, or discard this patch.
src/DependencyInjection/TaskExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
         $container->setParameter('task.lock.storages.file', $config['locking']['storages']['file']);
47 47
 
48
-        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
48
+        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
49 49
         $loader->load(sprintf('storage/%s.xml', $config['storage']));
50 50
         $loader->load('task_event_listener.xml');
51 51
         $loader->load('scheduler.xml');
Please login to merge, or discard this patch.