diff options
author | Pascal Borreli <pascal@borreli.com> | 2010-10-19 15:11:42 +0000 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2010-10-19 17:22:31 +0200 |
commit | e8e3b7636fb777461ddcdf07fd559c9a73456961 (patch) | |
tree | 2b29342e4d9f6f8cec7e4b1c7e6d669e490e7acb /Authentication/Token | |
parent | a9fb07f10fc85309cf441c19535154aacd4228f1 (diff) | |
download | symfony-security-e8e3b7636fb777461ddcdf07fd559c9a73456961.zip symfony-security-e8e3b7636fb777461ddcdf07fd559c9a73456961.tar.gz symfony-security-e8e3b7636fb777461ddcdf07fd559c9a73456961.tar.bz2 |
[Security] Fixed coding standard
Diffstat (limited to 'Authentication/Token')
-rw-r--r-- | Authentication/Token/Token.php | 4 | ||||
-rw-r--r-- | Authentication/Token/TokenInterface.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Authentication/Token/Token.php b/Authentication/Token/Token.php index 8279363..1903cc1 100644 --- a/Authentication/Token/Token.php +++ b/Authentication/Token/Token.php @@ -31,7 +31,7 @@ abstract class Token implements TokenInterface /** * Constructor. * - * @param Role[] An array of roles + * @param Role[] $roles An array of roles */ public function __construct(array $roles = array()) { @@ -47,7 +47,7 @@ abstract class Token implements TokenInterface /** * Adds a Role to the token. * - * @param RoleInterface A RoleInterface instance + * @param RoleInterface $role A RoleInterface instance */ public function addRole(RoleInterface $role) { diff --git a/Authentication/Token/TokenInterface.php b/Authentication/Token/TokenInterface.php index 1300716..a56c01d 100644 --- a/Authentication/Token/TokenInterface.php +++ b/Authentication/Token/TokenInterface.php @@ -63,7 +63,7 @@ interface TokenInterface extends \Serializable /** * Sets the authenticated flag. * - * @param Boolean The authenticated flag + * @param Boolean $isAuthenticated The authenticated flag */ function setAuthenticated($isAuthenticated); } |