@@ -22,7 +22,7 @@ |
||
22 | 22 | $configuration = new Configuration(); |
23 | 23 | $config = $this->processConfiguration($configuration, $configs); |
24 | 24 | |
25 | - $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config')); |
|
25 | + $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config')); |
|
26 | 26 | $loader->load(sprintf('storage/%s.xml', $config['storage'])); |
27 | 27 | $loader->load('task_event_listener.xml'); |
28 | 28 | $loader->load('scheduler.xml'); |
@@ -49,7 +49,7 @@ |
||
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); |
@@ -57,7 +57,7 @@ |
||
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 | } |