Completed
Push — master ( 97e5be...7f308f )
by Steevan
11:51
created
Service/ValidateSchemaService.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@  discard block
 block discarded – undo
71 71
     public function addMappingBundle(string $bundle): self
72 72
     {
73 73
         $path = $this->kernel->getBundle($bundle)->getPath();
74
-        $path .= DIRECTORY_SEPARATOR . 'Resources';
75
-        $path .= DIRECTORY_SEPARATOR . 'config';
76
-        $path .= DIRECTORY_SEPARATOR . 'doctrine';
74
+        $path .= DIRECTORY_SEPARATOR.'Resources';
75
+        $path .= DIRECTORY_SEPARATOR.'config';
76
+        $path .= DIRECTORY_SEPARATOR.'doctrine';
77 77
         $this->addMappingPath($path);
78 78
 
79 79
         return $this;
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
 
98 98
     protected function getLastMappingValidateFilePath(): string
99 99
     {
100
-        return $this->kernel->getCacheDir() . DIRECTORY_SEPARATOR . 'dev_bundle_last_mapping_validate';
100
+        return $this->kernel->getCacheDir().DIRECTORY_SEPARATOR.'dev_bundle_last_mapping_validate';
101 101
     }
102 102
 
103 103
     protected function needValidate(): bool
Please login to merge, or discard this patch.
DependencyInjection/DevExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 {
21 21
     public function load(array $configs, ContainerBuilder $container): void
22 22
     {
23
-        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
23
+        $loader = new Loader\YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
24 24
         $loader->load('services.yml');
25 25
 
26 26
         $configuration = new Configuration();
Please login to merge, or discard this patch.
Exception/InvalidMappingException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,6 +8,6 @@
 block discarded – undo
8 8
 {
9 9
     public function __construct(string $em, string $error)
10 10
     {
11
-        parent::__construct('[EntityManager : ' . $em . '] ' . $error);
11
+        parent::__construct('[EntityManager : '.$em.'] '.$error);
12 12
     }
13 13
 }
Please login to merge, or discard this patch.