Pārlūkot izejas kodu

Fixed violating coding standard as pointed about by blue-eyes.

henrikbjorn 14 gadi atpakaļ
vecāks
revīzija
b58498b1c8

+ 2 - 1
src/Symfony/Bundle/FrameworkBundle/Util/Mustache.php

@@ -28,7 +28,8 @@ class Mustache
      */
     static public function renderString($string, array $parameters)
     {
-        $replacer = function ($match) use ($parameters) {
+        $replacer = function ($match) use ($parameters)
+        {
             return isset($parameters[$match[1]]) ? $parameters[$match[1]] : $match[0];
         };