Completed
Push — master ( 8ce185...772880 )
by Pavel
04:21
created
Tests/Fixtures/JmsSerializer/JmsTestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
     /** {@inheritdoc} */
13 13
     public function registerContainerConfiguration(LoaderInterface $loader)
14 14
     {
15
-        return $loader->load(__DIR__ . '/config.yml');
15
+        return $loader->load(__DIR__.'/config.yml');
16 16
     }
17 17
 
18 18
     public function registerBundles()
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
     protected function buildContainer()
29 29
     {
30 30
         $container = parent::buildContainer();
31
-        $container->addResource(new FileResource(__DIR__ . '/config.yml'));
31
+        $container->addResource(new FileResource(__DIR__.'/config.yml'));
32 32
 
33 33
         return $container;
34 34
     }
Please login to merge, or discard this patch.
Tests/Fixtures/SymfonySerializer/SymfonyTestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@
 block discarded – undo
11 11
     /** {@inheritdoc} */
12 12
     public function registerContainerConfiguration(LoaderInterface $loader)
13 13
     {
14
-        return $loader->load(__DIR__ . '/config.yml');
14
+        return $loader->load(__DIR__.'/config.yml');
15 15
     }
16 16
 
17 17
     protected function buildContainer()
18 18
     {
19 19
         $container = parent::buildContainer();
20
-        $container->addResource(new FileResource(__DIR__ . '/config.yml'));
20
+        $container->addResource(new FileResource(__DIR__.'/config.yml'));
21 21
 
22 22
         return $container;
23 23
     }
Please login to merge, or discard this patch.
Tests/CrudsTestKernel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,12 +23,12 @@
 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
     /**
Please login to merge, or discard this patch.