@@ -78,7 +78,7 @@ |
||
| 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 | } |
@@ -71,7 +71,7 @@ |
||
| 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 |