Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 766b640

Browse files
committed
Fix issues raised by comments
1 parent cd86c9e commit 766b640

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Bundle/SecurityBundle/Resources/config/security_listeners.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
<argument /> <!-- Provider-shared Key -->
151151
<argument type="service" id="security.authentication.success_handler" />
152152
<argument type="service" id="security.authentication.failure_handler" />
153-
<argument type="collection" />
153+
<argument type="collection" /> <!-- Options -->
154154
<argument type="service" id="logger" on-invalid="null" />
155155
<argument type="service" id="event_dispatcher" on-invalid="null" />
156156
<argument type="service" id="property_accessor" on-invalid="null" />

src/Symfony/Bundle/SecurityBundle/Tests/Functional/Bundle/JsonLoginBundle/Controller/TestController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ class TestController
1818
{
1919
public function loginCheckAction()
2020
{
21-
throw new \RuntimeException('loginAction() should never be called.');
21+
throw new \RuntimeException(sprintf('%s should never be called.', __FUNCTION__));
2222
}
2323
}

0 commit comments

Comments
 (0)