Skip to content

Commit 35f082f

Browse files
committed
Fixed a syntax issue
1 parent 968476b commit 35f082f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/TwigBundle/Loader/FilesystemLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function findTemplate($template, $throw = true)
9191
if (false === $file || null === $file) {
9292
try {
9393
list($namespace, $name) = $this->parseName($logicalName);
94-
$paths = sprintf(' (looked into: %s)', implode(', ', $this->getPaths($namespace)));;
94+
$paths = sprintf(' (looked into: %s)', implode(', ', $this->getPaths($namespace)));
9595
} catch (\Twig_Error_Loader $e) {
9696
$paths = '';
9797
}

0 commit comments

Comments
 (0)