Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f07bcb2

Browse filesBrowse 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
Copy full SHA for f07bcb2

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

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

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpKernel/Tests/Controller/ControllerResolverTest.php
+1-1Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.