Fix constructor AbstractPreAuthenticatedListener#74
Closed
klaasn wants to merge 1 commit intosymfony:masterfrom
Closed
Fix constructor AbstractPreAuthenticatedListener#74klaasn wants to merge 1 commit intosymfony:masterfrom
klaasn wants to merge 1 commit intosymfony:masterfrom
Conversation
…ractAuthenticationListener and make it compatible with caller in PreAuthenticatedAuthenticationProvider
Contributor
|
Pre-authentication is fundamentally different from regular authentication. What is the benefit of this? |
Author
|
it allows me to define the service easily CookieSecurityBundle\Security\CookieFactoryand class CookieProvider extends PreAuthenticatedAuthenticationProvider {} |
Author
|
sorry, that made little sense. I meant to say that the service definition of the listener becomes the same for both. |
Contributor
|
I still don't see why we need this, I'll close this pull request. |
SofHad
pushed a commit
to SofHad/symfony
that referenced
this pull request
Oct 12, 2015
…bw, javiereguiluz) This PR was merged into the master branch. Discussion ---------- Add check.php file for access from web This PR takes the work made by @bocharsky-bw in symfony#74 and applies the look-and-feel of the Symfony Demo application to better integrate it. ### No errors - Before  ### No errors - After  ### Errors - Before  ### Errors - After  Commits ------- d88ef7b Added a note about in the README about the new requirements checked 6972191 Minor change to allow sub-directory installation 2295159 Add check.php file for access from web 2128178 Add check.php file for access from web
jderusse
pushed a commit
to jderusse/symfony
that referenced
this pull request
Mar 30, 2020
Add the advisory for ZF2015-05
chalasr
pushed a commit
to chalasr/symfony
that referenced
this pull request
Sep 24, 2020
* Downgrade PHP requirements to PHP 7.1 * Updated appveyor configuration * Addressed comments
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
AbstractPreAuthenticatedListener is only used in X509AuthenticationListener but there the constructor is overwritten.
It is a different from the constructor in
src/Symfony/Component/Security/Http/Firewall/AbstractAuthenticationListener.php
This change gives the two listeners the same footprint.