minor #19451 [TwigBundle] Removed redundant return statement. (zomberg)

This PR was merged into the 2.7 branch.

Discussion
----------

[TwigBundle] Removed redundant return statement.

| Q             | A
| ------------- | ---
| Branch?       | 2.7
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | ~
| License       | MIT
| Doc PR        | ~

Commits
-------

7f3145c [TwigBundle] Removed redundant return statement.
This commit is contained in:
Fabien Potencier 2016-07-27 23:07:26 -04:00
commit 76dbd3c66c

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));
}
/**