@@ -23,18 +23,18 @@ |
||
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 | /** |
@@ -33,7 +33,7 @@ |
||
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); |
@@ -21,7 +21,7 @@ |
||
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'); |