renamed PreAuthenticatedListener to AbstractPreAuthenticatedListener to be consistent

This commit is contained in:
Johannes M. Schmitt 2011-01-27 13:32:11 +01:00 committed by Fabien Potencier
parent 139510a78e
commit 00d3d8c3bc
2 changed files with 3 additions and 3 deletions

View File

@ -21,13 +21,13 @@ use Symfony\Component\Security\Core\Exception\AuthenticationException;
use Symfony\Component\HttpFoundation\Request;
/**
* PreAuthenticatedListener is the base class for all listener that
* AbstractPreAuthenticatedListener is the base class for all listener that
* authenticates users based on a pre-authenticated request (like a certificate
* for instance).
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
abstract class PreAuthenticatedListener implements ListenerInterface
abstract class AbstractPreAuthenticatedListener implements ListenerInterface
{
protected $securityContext;
protected $authenticationManager;

View File

@ -22,7 +22,7 @@ use Symfony\Component\Security\Core\Exception\BadCredentialsException;
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
*/
class X509AuthenticationListener extends PreAuthenticatedListener
class X509AuthenticationListener extends AbstractPreAuthenticatedListener
{
protected $userKey;
protected $credentialKey;