Completed
Push — master ( deddd6...b6b294 )
by Daniel
16:21
created
Application/Infrastructure/DependencyInjection/InfrastructureExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         $configuration = new Configuration();
18 18
         $config = $this->processConfiguration($configuration, $configs);
19 19
 
20
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
20
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
21 21
         $loader->load('services.yml');
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
src/Application/Infrastructure/Command/RpcServerCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,11 +16,11 @@
 block discarded – undo
16 16
 
17 17
     protected function execute(InputInterface $input, OutputInterface $output)
18 18
     {
19
-        $output->writeln(date('Y-m-d H:i:s') . 'cmobi:rpc-server:run ................... Running Server');
19
+        $output->writeln(date('Y-m-d H:i:s').'cmobi:rpc-server:run ................... Running Server');
20 20
         $server = $this->getContainer()->get('cmobi_rabbitmq.rpc_server');
21 21
 
22 22
         $server->run();
23 23
 
24
-        $output->writeln(date('Y-m-d H:i:s') . 'cmobi:rpc-server:run ................... Exiting Server');
24
+        $output->writeln(date('Y-m-d H:i:s').'cmobi:rpc-server:run ................... Exiting Server');
25 25
     }
26 26
 }
27 27
\ No newline at end of file
Please login to merge, or discard this patch.