diff options
author | Pascal Borreli <pascal@borreli.com> | 2011-05-29 23:25:35 +0000 |
---|---|---|
committer | Pascal Borreli <pascal@borreli.com> | 2011-05-29 23:33:36 +0000 |
commit | 5fcd8d03276e142bbedd2194f59cf8e551d624c7 (patch) | |
tree | 98f274df013c66d8fd65942aa878a6d12b3a41ca | |
parent | e8f01b158d44c02ba7801477ff8830001cc33bef (diff) | |
download | symfony-security-5fcd8d03276e142bbedd2194f59cf8e551d624c7.zip symfony-security-5fcd8d03276e142bbedd2194f59cf8e551d624c7.tar.gz symfony-security-5fcd8d03276e142bbedd2194f59cf8e551d624c7.tar.bz2 |
[Various] Fixed phpdoc
-rw-r--r-- | Acl/Domain/AuditLogger.php | 2 | ||||
-rw-r--r-- | Acl/Model/PermissionGrantingStrategyInterface.php | 6 | ||||
-rw-r--r-- | Core/Authentication/Token/RememberMeToken.php | 4 | ||||
-rw-r--r-- | Http/Firewall/AbstractAuthenticationListener.php | 15 |
4 files changed, 16 insertions, 11 deletions
diff --git a/Acl/Domain/AuditLogger.php b/Acl/Domain/AuditLogger.php index 9f95d06..7c4bf1a 100644 --- a/Acl/Domain/AuditLogger.php +++ b/Acl/Domain/AuditLogger.php @@ -45,7 +45,7 @@ abstract class AuditLogger implements AuditLoggerInterface /** * This method is only called when logging is needed * - * @param Boolean $granted + * @param Boolean $granted * @param EntryInterface $ace * @return void */ diff --git a/Acl/Model/PermissionGrantingStrategyInterface.php b/Acl/Model/PermissionGrantingStrategyInterface.php index 882eb08..e2277f0 100644 --- a/Acl/Model/PermissionGrantingStrategyInterface.php +++ b/Acl/Model/PermissionGrantingStrategyInterface.php @@ -22,9 +22,9 @@ interface PermissionGrantingStrategyInterface * Determines whether access to a domain object is to be granted * * @param AclInterface $acl - * @param array $masks - * @param array $sids - * @param Boolean $administrativeMode + * @param array $masks + * @param array $sids + * @param Boolean $administrativeMode * @return Boolean */ function isGranted(AclInterface $acl, array $masks, array $sids, $administrativeMode = false); diff --git a/Core/Authentication/Token/RememberMeToken.php b/Core/Authentication/Token/RememberMeToken.php index 7978427..6abb1e5 100644 --- a/Core/Authentication/Token/RememberMeToken.php +++ b/Core/Authentication/Token/RememberMeToken.php @@ -27,8 +27,8 @@ class RememberMeToken extends AbstractToken * Constructor. * * @param UserInterface $user - * @param string $providerKey - * @param string $key + * @param string $providerKey + * @param string $key */ public function __construct(UserInterface $user, $providerKey, $key) { parent::__construct($user->getRoles()); diff --git a/Http/Firewall/AbstractAuthenticationListener.php b/Http/Firewall/AbstractAuthenticationListener.php index 2b2db40..ac3f784 100644 --- a/Http/Firewall/AbstractAuthenticationListener.php +++ b/Http/Firewall/AbstractAuthenticationListener.php @@ -63,11 +63,16 @@ abstract class AbstractAuthenticationListener implements ListenerInterface /** * Constructor. * - * @param SecurityContextInterface $securityContext A SecurityContext instance - * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance - * @param array $options An array of options for the processing of a successful, or failed authentication attempt - * @param LoggerInterface $logger A LoggerInterface instance - * @param EventDispatcherInterface $dispatcher An EventDispatcherInterface instance + * @param SecurityContextInterface $securityContext A SecurityContext instance + * @param AuthenticationManagerInterface $authenticationManager An AuthenticationManagerInterface instance + * @param SessionAuthenticationStrategyInterface $sessionStrategy + * @param string $providerKey + * @param array $options An array of options for the processing of a + * successful, or failed authentication attempt + * @param AuthenticationSuccessHandlerInterface $successHandler + * @param AuthenticationFailureHandlerInterface $failureHandler + * @param LoggerInterface $logger A LoggerInterface instance + * @param EventDispatcherInterface $dispatcher An EventDispatcherInterface instance */ public function __construct(SecurityContextInterface $securityContext, AuthenticationManagerInterface $authenticationManager, SessionAuthenticationStrategyInterface $sessionStrategy, $providerKey, array $options = array(), AuthenticationSuccessHandlerInterface $successHandler = null, AuthenticationFailureHandlerInterface $failureHandler = null, LoggerInterface $logger = null, EventDispatcherInterface $dispatcher = null) { |