Test Setup Failed
Push — master ( 54d9ea...6b459a )
by Axel
15:02 queued 10:02
created
src/system/SettingsModule/DependencyInjection/ZikulaSettingsExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
             // do not set in a distribution package when core components are in "vendor/"
79 79
         }
80 80
 
81
-        $bundles = array_filter($container->getParameter('kernel.bundles'), function ($bundleClassName, $name) use ($container) {
81
+        $bundles = array_filter($container->getParameter('kernel.bundles'), function($bundleClassName, $name) use ($container) {
82 82
             if (ZikulaKernel::isCoreExtension($name)) {
83 83
                 return false;
84 84
             }
Please login to merge, or discard this patch.
src/Zikula/CoreBundle/Twig/Runtime/CoreRuntime.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         $string = preg_replace_callback(
73 73
             '/(.)@(.)/s',
74
-            static function ($m) {
74
+            static function($m) {
75 75
                 return '&#' . sprintf('%03d', ord($m[1])) . ';@&#' . sprintf('%03d', ord($m[2])) . ';';
76 76
             },
77 77
             $string
Please login to merge, or discard this patch.