Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
Fix constructor AbstractPreAuthenticatedListener#74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
…ractAuthenticationListener and make it compatible with caller in PreAuthenticatedAuthenticationProvider
schmittjoh commentedFeb 22, 2011
Pre-authentication is fundamentally different from regular authentication. What is the benefit of this? |
klaasn commentedFeb 22, 2011
it allows me to define the service easily CookieSecurityBundle\Security\CookieFactoryand class CookieProvider extends PreAuthenticatedAuthenticationProvider {} |
klaasn commentedFeb 22, 2011
sorry, that made little sense. I meant to say that the service definition of the listener becomes the same for both. |
schmittjoh commentedFeb 22, 2011
I still don't see why we need this, I'll close this pull request. |
…bw, javiereguiluz)This PR was merged into the master branch.Discussion----------Add check.php file for access from webThis PR takes the work made by@bocharsky-bw insymfony#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 - AfterCommits-------d88ef7b Added a note about in the README about the new requirements checked6972191 Minor change to allow sub-directory installation2295159 Add check.php file for access from web2128178 Add check.php file for access from web
Add the advisory for ZF2015-05
* Downgrade PHP requirements to PHP 7.1* Updated appveyor configuration* Addressed comments
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.