From fde278d7a87461e0429b832ce0f4a835510b3fdb Mon Sep 17 00:00:00 2001 From: Pascal Borreli Date: Tue, 19 Oct 2010 14:19:34 +0000 Subject: [PATCH] [Security] Fixed typo --- .../Component/Security/Encoder/PasswordEncoderInterface.php | 2 +- src/Symfony/Component/Security/Role/RoleInterface.php | 2 +- src/Symfony/Component/Security/Role/SwitchUserRole.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Security/Encoder/PasswordEncoderInterface.php b/src/Symfony/Component/Security/Encoder/PasswordEncoderInterface.php index c81ec25251..88d084bbb8 100644 --- a/src/Symfony/Component/Security/Encoder/PasswordEncoderInterface.php +++ b/src/Symfony/Component/Security/Encoder/PasswordEncoderInterface.php @@ -22,7 +22,7 @@ interface PasswordEncoderInterface * Encodes the raw password. * * @param string $raw The password to encode - * @param stirng $salt The salt + * @param string $salt The salt * * @return string The encoded password */ diff --git a/src/Symfony/Component/Security/Role/RoleInterface.php b/src/Symfony/Component/Security/Role/RoleInterface.php index 12bec014ab..328cfdf8cb 100644 --- a/src/Symfony/Component/Security/Role/RoleInterface.php +++ b/src/Symfony/Component/Security/Role/RoleInterface.php @@ -15,7 +15,7 @@ namespace Symfony\Component\Security\Role; * RoleInterface represents a role granted to a user. * * A role must either have a string representation or - * it needs to be explicitely supported by an at least + * it needs to be explicitly supported by an at least * one AccessDecisionManager. * * @author Fabien Potencier diff --git a/src/Symfony/Component/Security/Role/SwitchUserRole.php b/src/Symfony/Component/Security/Role/SwitchUserRole.php index 857898fc04..c3c7fa69d6 100644 --- a/src/Symfony/Component/Security/Role/SwitchUserRole.php +++ b/src/Symfony/Component/Security/Role/SwitchUserRole.php @@ -14,7 +14,7 @@ use Symfony\Component\Security\Authentication\Token\TokenInterface; */ /** - * SwitchUserRole is used when the current user temporarly impersonates another one. + * SwitchUserRole is used when the current user temporarily impersonates another one. * * @author Fabien Potencier */