From 68a39159b040939e00dd0b65e815231221ee235f Mon Sep 17 00:00:00 2001 From: Joseph Bielawski Date: Fri, 29 Apr 2011 02:46:23 -0700 Subject: [PATCH] Environment.php - CS fix --- lib/Twig/Environment.php | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) 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()); -- 1.7.2.5