summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Acl/Dbal/AclProvider.php2
-rw-r--r--Acl/Model/ObjectIdentityRetrievalStrategyInterface.php2
-rw-r--r--Acl/Model/PermissionGrantingStrategyInterface.php4
-rw-r--r--Http/Firewall/SwitchUserListener.php2
-rw-r--r--Http/Logout/CookieClearingLogoutHandler.php2
5 files changed, 6 insertions, 6 deletions
diff --git a/Acl/Dbal/AclProvider.php b/Acl/Dbal/AclProvider.php
index 40bd067..c45a597 100644
--- a/Acl/Dbal/AclProvider.php
+++ b/Acl/Dbal/AclProvider.php
@@ -466,7 +466,7 @@ class AclProvider implements AclProviderInterface
}
/**
- * Constructs the query used for looking up object identites and associated
+ * Constructs the query used for looking up object identities and associated
* ACEs, and security identities.
*
* @param array $batch
diff --git a/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php b/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php
index 26f77e4..551cb46 100644
--- a/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php
+++ b/Acl/Model/ObjectIdentityRetrievalStrategyInterface.php
@@ -19,7 +19,7 @@ namespace Symfony\Component\Security\Acl\Model;
interface ObjectIdentityRetrievalStrategyInterface
{
/**
- * Retrievies the object identity from a domain object
+ * Retrieves the object identity from a domain object
*
* @param object $domainObject
* @return ObjectIdentityInterface
diff --git a/Acl/Model/PermissionGrantingStrategyInterface.php b/Acl/Model/PermissionGrantingStrategyInterface.php
index 800874e..3108e68 100644
--- a/Acl/Model/PermissionGrantingStrategyInterface.php
+++ b/Acl/Model/PermissionGrantingStrategyInterface.php
@@ -36,8 +36,8 @@ interface PermissionGrantingStrategyInterface
* @param string $field
* @param array $masks
* @param array $sids
- * @param Boolean $adminstrativeMode
+ * @param Boolean $administrativeMode
* @return Boolean
*/
- function isFieldGranted(AclInterface $acl, $field, array $masks, array $sids, $adminstrativeMode = false);
+ function isFieldGranted(AclInterface $acl, $field, array $masks, array $sids, $administrativeMode = false);
} \ No newline at end of file
diff --git a/Http/Firewall/SwitchUserListener.php b/Http/Firewall/SwitchUserListener.php
index 4df51f0..3adc1be 100644
--- a/Http/Firewall/SwitchUserListener.php
+++ b/Http/Firewall/SwitchUserListener.php
@@ -29,7 +29,7 @@ use Symfony\Component\Security\Core\Exception\AuthenticationCredentialsNotFoundE
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
/**
- * SwitchUserListener allows a user to impersonate another one temporarly
+ * SwitchUserListener allows a user to impersonate another one temporarily
* (like the Unix su command).
*
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
diff --git a/Http/Logout/CookieClearingLogoutHandler.php b/Http/Logout/CookieClearingLogoutHandler.php
index 91fdc3d..e4673af 100644
--- a/Http/Logout/CookieClearingLogoutHandler.php
+++ b/Http/Logout/CookieClearingLogoutHandler.php
@@ -16,7 +16,7 @@ use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpFoundation\Request;
/**
- * This handler cleares the passed cookies when a user logs out.
+ * This handler clears the passed cookies when a user logs out.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/