diff options
Diffstat (limited to 'Acl/Model/AclCacheInterface.php')
-rw-r--r-- | Acl/Model/AclCacheInterface.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Acl/Model/AclCacheInterface.php b/Acl/Model/AclCacheInterface.php index 03431db..1e74585 100644 --- a/Acl/Model/AclCacheInterface.php +++ b/Acl/Model/AclCacheInterface.php @@ -12,21 +12,21 @@ namespace Symfony\Component\Security\Acl\Model; /** - * AclCache Interface + * AclCache Interface. * * @author Johannes M. Schmitt <schmittjoh@gmail.com> */ interface AclCacheInterface { /** - * Removes an ACL from the cache + * Removes an ACL from the cache. * * @param string $primaryKey a serialized primary key */ public function evictFromCacheById($primaryKey); /** - * Removes an ACL from the cache + * Removes an ACL from the cache. * * The ACL which is returned, must reference the passed object identity. * @@ -35,7 +35,7 @@ interface AclCacheInterface public function evictFromCacheByIdentity(ObjectIdentityInterface $oid); /** - * Retrieves an ACL for the given object identity primary key from the cache + * Retrieves an ACL for the given object identity primary key from the cache. * * @param int $primaryKey * @@ -44,7 +44,7 @@ interface AclCacheInterface public function getFromCacheById($primaryKey); /** - * Retrieves an ACL for the given object identity from the cache + * Retrieves an ACL for the given object identity from the cache. * * @param ObjectIdentityInterface $oid * @@ -53,14 +53,14 @@ interface AclCacheInterface public function getFromCacheByIdentity(ObjectIdentityInterface $oid); /** - * Stores a new ACL in the cache + * Stores a new ACL in the cache. * * @param AclInterface $acl */ public function putInCache(AclInterface $acl); /** - * Removes all ACLs from the cache + * Removes all ACLs from the cache. */ public function clearCache(); } |