From e9d951a8821df4df3fcce48ec79806cca97dbae7 Mon Sep 17 00:00:00 2001 From: Roy Van Ginneken Date: Sun, 11 Oct 2015 14:34:15 +0200 Subject: [PATCH] [CodingStandards] Conformed to coding standards --- 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 faf5ce3217..73e38cbe86 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) { list($namespace, $name) = $this->parseName($logicalName); $paths = $this->getPaths($namespace); - array_walk($paths, function (&$path) use ($name) { $path .= '/' . $name; }); + array_walk($paths, function (&$path) use ($name) { $path .= '/'.$name; }); throw new \Twig_Error_Loader(sprintf('Unable to find template "%s" (tried: %s).', $name, implode(', ', $paths)), -1, null, $previous); }