summaryrefslogtreecommitdiffstats
path: root/Acl/Model
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Model')
-rw-r--r--Acl/Model/AclCacheInterface.php5
-rw-r--r--Acl/Model/AuditLoggerInterface.php1
-rw-r--r--Acl/Model/AuditableAclInterface.php5
-rw-r--r--Acl/Model/MutableAclInterface.php14
-rw-r--r--Acl/Model/MutableAclProviderInterface.php2
-rw-r--r--Acl/Model/SecurityIdentityInterface.php1
6 files changed, 0 insertions, 28 deletions
diff --git a/Acl/Model/AclCacheInterface.php b/Acl/Model/AclCacheInterface.php
index bc6c11f..dd515ce 100644
--- a/Acl/Model/AclCacheInterface.php
+++ b/Acl/Model/AclCacheInterface.php
@@ -22,7 +22,6 @@ interface AclCacheInterface
* Removes an ACL from the cache
*
* @param string $primaryKey a serialized primary key
- * @return void
*/
function evictFromCacheById($primaryKey);
@@ -32,7 +31,6 @@ interface AclCacheInterface
* The ACL which is returned, must reference the passed object identity.
*
* @param ObjectIdentityInterface $oid
- * @return void
*/
function evictFromCacheByIdentity(ObjectIdentityInterface $oid);
@@ -56,14 +54,11 @@ interface AclCacheInterface
* Stores a new ACL in the cache
*
* @param AclInterface $acl
- * @return void
*/
function putInCache(AclInterface $acl);
/**
* Removes all ACLs from the cache
- *
- * @return void
*/
function clearCache();
}
diff --git a/Acl/Model/AuditLoggerInterface.php b/Acl/Model/AuditLoggerInterface.php
index dceb76b..56fd12e 100644
--- a/Acl/Model/AuditLoggerInterface.php
+++ b/Acl/Model/AuditLoggerInterface.php
@@ -24,7 +24,6 @@ interface AuditLoggerInterface
*
* @param Boolean $granted
* @param EntryInterface $ace
- * @return void
*/
function logIfNeeded($granted, EntryInterface $ace);
}
diff --git a/Acl/Model/AuditableAclInterface.php b/Acl/Model/AuditableAclInterface.php
index 2a6d619..9a95106 100644
--- a/Acl/Model/AuditableAclInterface.php
+++ b/Acl/Model/AuditableAclInterface.php
@@ -24,7 +24,6 @@ interface AuditableAclInterface extends MutableAclInterface
* @param integer $index
* @param Boolean $auditSuccess
* @param Boolean $auditFailure
- * @return void
*/
function updateClassAuditing($index, $auditSuccess, $auditFailure);
@@ -35,9 +34,7 @@ interface AuditableAclInterface extends MutableAclInterface
* @param string $field
* @param Boolean $auditSuccess
* @param Boolean $auditFailure
- * @return void
*/
-
function updateClassFieldAuditing($index, $field, $auditSuccess, $auditFailure);
/**
@@ -46,7 +43,6 @@ interface AuditableAclInterface extends MutableAclInterface
* @param integer $index
* @param Boolean $auditSuccess
* @param Boolean $auditFailure
- * @return void
*/
function updateObjectAuditing($index, $auditSuccess, $auditFailure);
@@ -57,7 +53,6 @@ interface AuditableAclInterface extends MutableAclInterface
* @param string $field
* @param Boolean $auditSuccess
* @param Boolean $auditFailure
- * @return void
*/
function updateObjectFieldAuditing($index, $field, $auditSuccess, $auditFailure);
}
diff --git a/Acl/Model/MutableAclInterface.php b/Acl/Model/MutableAclInterface.php
index 54a3f8e..521d307 100644
--- a/Acl/Model/MutableAclInterface.php
+++ b/Acl/Model/MutableAclInterface.php
@@ -25,7 +25,6 @@ interface MutableAclInterface extends AclInterface
* Deletes a class-based ACE
*
* @param integer $index
- * @return void
*/
function deleteClassAce($index);
@@ -34,7 +33,6 @@ interface MutableAclInterface extends AclInterface
*
* @param integer $index
* @param string $field
- * @return void
*/
function deleteClassFieldAce($index, $field);
@@ -42,7 +40,6 @@ interface MutableAclInterface extends AclInterface
* Deletes an object-based ACE
*
* @param integer $index
- * @return void
*/
function deleteObjectAce($index);
@@ -51,7 +48,6 @@ interface MutableAclInterface extends AclInterface
*
* @param integer $index
* @param string $field
- * @return void
*/
function deleteObjectFieldAce($index, $field);
@@ -70,7 +66,6 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param Boolean $granting
* @param string $strategy
- * @return void
*/
function insertClassAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -83,7 +78,6 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param Boolean $granting
* @param string $strategy
- * @return void
*/
function insertClassFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -95,7 +89,6 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param Boolean $granting
* @param string $strategy
- * @return void
*/
function insertObjectAce(SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -108,7 +101,6 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param Boolean $granting
* @param string $strategy
- * @return void
*/
function insertObjectFieldAce($field, SecurityIdentityInterface $sid, $mask, $index = 0, $granting = true, $strategy = null);
@@ -116,7 +108,6 @@ interface MutableAclInterface extends AclInterface
* Sets whether entries are inherited
*
* @param Boolean $boolean
- * @return void
*/
function setEntriesInheriting($boolean);
@@ -124,7 +115,6 @@ interface MutableAclInterface extends AclInterface
* Sets the parent ACL
*
* @param AclInterface $acl
- * @return void
*/
function setParentAcl(AclInterface $acl);
@@ -134,7 +124,6 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
- * @return void
*/
function updateClassAce($index, $mask, $strategy = null);
@@ -145,7 +134,6 @@ interface MutableAclInterface extends AclInterface
* @param string $field
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
- * @return void
*/
function updateClassFieldAce($index, $field, $mask, $strategy = null);
@@ -155,7 +143,6 @@ interface MutableAclInterface extends AclInterface
* @param integer $index
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
- * @return void
*/
function updateObjectAce($index, $mask, $strategy = null);
@@ -166,7 +153,6 @@ interface MutableAclInterface extends AclInterface
* @param string $field
* @param integer $mask
* @param string $strategy if null the strategy should not be changed
- * @return void
*/
function updateObjectFieldAce($index, $field, $mask, $strategy = null);
}
diff --git a/Acl/Model/MutableAclProviderInterface.php b/Acl/Model/MutableAclProviderInterface.php
index c04eb31..58eeb7d 100644
--- a/Acl/Model/MutableAclProviderInterface.php
+++ b/Acl/Model/MutableAclProviderInterface.php
@@ -35,7 +35,6 @@ interface MutableAclProviderInterface extends AclProviderInterface
* want child ACLs to be deleted, you will have to set their parent ACL to null.
*
* @param ObjectIdentityInterface $oid
- * @return void
*/
function deleteAcl(ObjectIdentityInterface $oid);
@@ -46,7 +45,6 @@ interface MutableAclProviderInterface extends AclProviderInterface
* Changes to parent ACLs are not persisted.
*
* @param MutableAclInterface $acl
- * @return void
*/
function updateAcl(MutableAclInterface $acl);
}
diff --git a/Acl/Model/SecurityIdentityInterface.php b/Acl/Model/SecurityIdentityInterface.php
index 1833630..5bf6189 100644
--- a/Acl/Model/SecurityIdentityInterface.php
+++ b/Acl/Model/SecurityIdentityInterface.php
@@ -25,7 +25,6 @@ interface SecurityIdentityInterface
* not rely on referential equality.
*
* @param SecurityIdentityInterface $identity
- * @return void
*/
function equals(SecurityIdentityInterface $identity);
}