8000 minor #27085 [HttpKernel] fix duplicate controller resolver test case… · symfony/symfony@f07bcb2 · GitHub
[go: up one dir, main page]

Skip to content

Commit f07bcb2

Browse files
minor #27085 [HttpKernel] fix duplicate controller resolver test case (Tobion)
This PR was merged into the 4.1-dev branch. Discussion ---------- [HttpKernel] fix duplicate controller resolver test case | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no <!-- don't forget to update src/**/CHANGELOG.md files --> | BC breaks? | no <!-- see https://symfony.com/bc --> | Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Tests pass? | yes <!-- please add some, will be required by reviewers --> | Fixed tickets | #26085 | License | MIT | Doc PR | Commits ------- fc5afea fix duplicate controller resolver test case
2 parents 00ca74e + fc5afea commit f07bcb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public function getStaticControllers()
148148
return array(
149149
array(AbstractController::class.'::staticAction', 'foo'),
150150
array(array(AbstractController::class, 'staticAction'), 'foo'),
151-
array(array(PrivateConstructorController::class, 'staticAction'), 'bar'),
151+
array(PrivateConstructorController::class.'::staticAction', 'bar'),
152152
array(array(PrivateConstructorController::class, 'staticAction'), 'bar'),
153153
);
154154
}

0 commit comments

Comments
 (0)
0