From 7f3145c60615ce13589b2298048ade8619783cb2 Mon Sep 17 00:00:00 2001 From: Vyacheslav Pavlov Date: Wed, 27 Jul 2016 23:41:42 +0300 Subject: [PATCH] [TwigBundle] Removed redundant return statement. --- .../Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php b/src/Symfony/Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php index 0ee259fb7b..269e029a08 100644 --- a/src/Symfony/Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php +++ b/src/Symfony/Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php @@ -48,7 +48,7 @@ class FilesystemLoaderTest extends TestCase ; $loader = new FilesystemLoader($locator, $parser); - return $this->assertTrue($loader->exists($template)); + $this->assertTrue($loader->exists($template)); } /**