Completed
Push — main ( 7fdac8...a8c0d4 )
by Roni
28s queued 13s
created
DependencyInjection/XiideaEasyConfigExtension.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,10 +15,10 @@
 block discarded – undo
15 15
         $config = $this->processConfiguration($configuration, $configs);
16 16
 
17 17
         foreach ($config as $key => $value) {
18
-            $container->setParameter('xiidea.easy_config.' . $key, $value);
18
+            $container->setParameter('xiidea.easy_config.'.$key, $value);
19 19
         }
20 20
 
21
-        $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../Resources/config'));
21
+        $loader = new YamlFileLoader($container, new FileLocator(__DIR__.'/../Resources/config'));
22 22
         $loader->load('services.yaml');
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
Utility/StringUtil.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
         $text = preg_replace('/([A-Z]+)([A-Z][a-z])/', '\\1 \\2', $text);
15 15
         $text = preg_replace('/([a-z\d])([A-Z])/', '\\1 \\2', $text);
16 16
         $text = preg_replace('~\bdont\b~', 'don\'t', $text);
17
-        $text = preg_replace('/_/', ' ', $text);;
17
+        $text = preg_replace('/_/', ' ', $text); ;
18 18
 
19 19
         return mb_strtolower($text, 'UTF-8');
20 20
     }
Please login to merge, or discard this patch.