Completed
Push — master ( 589f5d...2e0cd6 )
by Pavel
07:02
created
Tests/Fixtures/Common/CrudsTestKernel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,18 +23,18 @@
 block discarded – undo
23 23
 
24 24
     public function getCacheDir()
25 25
     {
26
-        return __DIR__ . '/../../../build/' . $this->getClassName() . '/cache';
26
+        return __DIR__.'/../../../build/'.$this->getClassName().'/cache';
27 27
     }
28 28
 
29 29
     public function getLogDir()
30 30
     {
31
-        return __DIR__ . '/../../../build/' . $this->getClassName() . '/logs';
31
+        return __DIR__.'/../../../build/'.$this->getClassName().'/logs';
32 32
     }
33 33
 
34 34
     /** {@inheritdoc} */
35 35
     public function registerContainerConfiguration(LoaderInterface $loader)
36 36
     {
37
-        return $loader->load(__DIR__ . '/config.yml');
37
+        return $loader->load(__DIR__.'/config.yml');
38 38
     }
39 39
 
40 40
     /**
Please login to merge, or discard this patch.
DependencyInjection/Compiler/DoctrineOrmCompilerPass.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
             $handler->setArguments([new Reference('doctrine')]);
34 34
 
35 35
             $container->getDefinition('serializer.normalizer.object')
36
-                      ->addMethodCall('setCircularReferenceHandler', [[$handler, 'handle']]);
36
+                        ->addMethodCall('setCircularReferenceHandler', [[$handler, 'handle']]);
37 37
 
38 38
             $normalizer = new DefinitionDecorator('serializer.normalizer.object');
39 39
             $normalizer->setClass(DoctrineObjectNormalizer::class);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
             return;
22 22
         }
23 23
 
24
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../../Resources/config'));
24
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../../Resources/config'));
25 25
         $loader->load('doctrine.yml');
26 26
 
27 27
         $factory = $container->getDefinition('cruds.factory.reflection');
Please login to merge, or discard this patch.