Completed
Push — master ( 8aadd3...9420d2 )
by Alex
14:17
created
EventListener/LayoutsListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             if ($layoutConfig['host'] && $host === $layoutConfig['host']) {
64 64
                 $match = true;
65 65
             }
66
-            if ($layoutConfig['pattern'] && preg_match('~' . $layoutConfig['pattern'] . '~', $path)) {
66
+            if ($layoutConfig['pattern'] && preg_match('~'.$layoutConfig['pattern'].'~', $path)) {
67 67
                 $match = true;
68 68
             }
69 69
             if ($match) {
Please login to merge, or discard this patch.
Tests/DependencyInjection/OrbitaleCmsExtensionTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $ext->load($config, $builder);
69 69
 
70 70
         foreach ($expected['orbitale_cms'] as $key => $value) {
71
-            static::assertSame($value, $builder->getParameter('orbitale_cms.' . $key));
71
+            static::assertSame($value, $builder->getParameter('orbitale_cms.'.$key));
72 72
         }
73 73
     }
74 74
 
@@ -87,16 +87,16 @@  discard block
 block discarded – undo
87 87
         $ext->load($config, $builder);
88 88
 
89 89
         foreach ($expected['orbitale_cms'] as $key => $value) {
90
-            static::assertSame($value, $builder->getParameter('orbitale_cms.' . $key));
90
+            static::assertSame($value, $builder->getParameter('orbitale_cms.'.$key));
91 91
         }
92 92
     }
93 93
 
94 94
     public function provideConfiguration()
95 95
     {
96
-        $dir = __DIR__ . '/../Fixtures/App/extension_test/';
96
+        $dir = __DIR__.'/../Fixtures/App/extension_test/';
97 97
 
98
-        $configFiles = glob($dir . 'config_*.yml');
99
-        $resultFiles = glob($dir . 'result_*.yml');
98
+        $configFiles = glob($dir.'config_*.yml');
99
+        $resultFiles = glob($dir.'result_*.yml');
100 100
 
101 101
         sort($configFiles);
102 102
         sort($resultFiles);
Please login to merge, or discard this patch.