From: Fabien Potencier Date: Mon, 29 Aug 2011 16:26:53 +0000 (+0200) Subject: fixed CS X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=b1bfb14d4664a23a529c1b3552396ad8220196aa;p=konrad%2Ftwig.git fixed CS --- diff --git a/lib/Twig/Error.php b/lib/Twig/Error.php index 5659e85..ada7bf0 100644 --- a/lib/Twig/Error.php +++ b/lib/Twig/Error.php @@ -175,10 +175,9 @@ class Twig_Error extends Exception $tokens = token_get_all(file_get_contents($r->getFilename())); $templateline = -1; $template = null; - $tokensSize = count($tokens); - for($j = 0; $j < $tokensSize; $j++) { + for ($j = 0, $tokensSize = count($tokens); $j < $tokensSize; $j++) { $token = $tokens[$j]; - + if (isset($token[2]) && $token[2] >= $line) { return array($templateline, $template); }