Skip to content

Commit 76dbd3c

Browse files
committed
minor symfony#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.
2 parents 35c70be + 7f3145c commit 76dbd3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Bundle/TwigBundle/Tests/Loader/FilesystemLoaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function testExists()
4848
;
4949
$loader = new FilesystemLoader($locator, $parser);
5050

51-
return $this->assertTrue($loader->exists($template));
51+
$this->assertTrue($loader->exists($template));
5252
}
5353

5454
/**

0 commit comments

Comments
 (0)