From 35f082f6ef954b78af20e36f8b1bae7d32dda83d Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Tue, 19 Jan 2016 10:10:19 +0100 Subject: [PATCH] Fixed a syntax issue --- src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php b/src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php index 8b9f47b4de..0bc4bc5583 100644 --- a/src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php +++ b/src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php @@ -91,7 +91,7 @@ class FilesystemLoader extends \Twig_Loader_Filesystem if (false === $file || null === $file) { try { list($namespace, $name) = $this->parseName($logicalName); - $paths = sprintf(' (looked into: %s)', implode(', ', $this->getPaths($namespace)));; + $paths = sprintf(' (looked into: %s)', implode(', ', $this->getPaths($namespace))); } catch (\Twig_Error_Loader $e) { $paths = ''; }