From: Joseph Bielawski Date: Fri, 29 Apr 2011 09:46:23 +0000 (-0700) Subject: Environment.php - CS fix X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=68a39159b040939e00dd0b65e815231221ee235f;p=konrad%2Ftwig.git Environment.php - CS fix --- diff --git a/lib/Twig/Environment.php b/lib/Twig/Environment.php index 85cff2e..642cc85 100644 --- a/lib/Twig/Environment.php +++ b/lib/Twig/Environment.php @@ -17,7 +17,7 @@ */ class Twig_Environment { - const VERSION = '1.0.0-RC2'; + const VERSION = '1.1.0-alpha'; protected $charset; protected $loader; @@ -805,7 +805,8 @@ class Twig_Environment $this->functionCallbacks[] = $callable; } - protected function loadFunctions() { + protected function loadFunctions() + { $this->functions = array(); foreach ($this->getExtensions() as $extension) { $this->functions = array_merge($this->functions, $extension->getFunctions());