[TwigBundle] Removed redundant return statement.

This commit is contained in:
Vyacheslav Pavlov 2016-07-27 23:41:42 +03:00
parent 35c70be59f
commit 7f3145c606

View File

@ -48,7 +48,7 @@ class FilesystemLoaderTest extends TestCase
;
$loader = new FilesystemLoader($locator, $parser);
return $this->assertTrue($loader->exists($template));
$this->assertTrue($loader->exists($template));
}
/**