Completed
Push — master ( 6f12ce...8df4ab )
by Steevan
05:28 queued 03:12
created
Exception/TranslationsNotFoundException.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -11,13 +11,13 @@
 block discarded – undo
11 11
     {
12 12
         $missings = array();
13 13
         foreach ($messages as $message) {
14
-            $missing = '[ id : ' . $message['id'] . ', ';
15
-            $missing .= 'domain : ' . $message['domain'] . ', ';
16
-            $missing .= 'locale : ' . $message['locale'] . ' ]';
14
+            $missing = '[ id : '.$message['id'].', ';
15
+            $missing .= 'domain : '.$message['domain'].', ';
16
+            $missing .= 'locale : '.$message['locale'].' ]';
17 17
 
18 18
             $missings[] = $missing;
19 19
         }
20 20
 
21
-        parent::__construct('Translations not found : ' . implode(', ', $missings));
21
+        parent::__construct('Translations not found : '.implode(', ', $missings));
22 22
     }
23 23
 }
Please login to merge, or discard this patch.
EventListener/TranslationsNotFoundListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
                 $message['state'] === DataCollectorTranslator::MESSAGE_EQUALS_FALLBACK
46 46
                 && $this->allowFallbacks === false
47 47
             ) {
48
-                $message['locale'] = 'fallback ' . $message['locale'] . ' found ';
48
+                $message['locale'] = 'fallback '.$message['locale'].' found ';
49 49
                 $message['locale'] .= 'but not allowed by config dev.translation.allow_fallbacks)';
50 50
                 $missings[] = $message;
51 51
             }
Please login to merge, or discard this patch.
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.