summaryrefslogtreecommitdiffstats
path: root/Acl/Dbal
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Dbal')
-rw-r--r--Acl/Dbal/AclProvider.php2
-rw-r--r--Acl/Dbal/MutableAclProvider.php9
-rw-r--r--Acl/Dbal/Schema.php11
3 files changed, 0 insertions, 22 deletions
diff --git a/Acl/Dbal/AclProvider.php b/Acl/Dbal/AclProvider.php
index 143dee6..6e05fa9 100644
--- a/Acl/Dbal/AclProvider.php
+++ b/Acl/Dbal/AclProvider.php
@@ -348,7 +348,6 @@ QUERY;
* This method is called when an ACL instance is retrieved from the cache.
*
* @param AclInterface $acl
- * @return void
*/
private function updateAceIdentityMap(AclInterface $acl)
{
@@ -396,7 +395,6 @@ QUERY;
* map to ensure every ACE only gets instantiated once.
*
* @param array $aces
- * @return void
*/
private function doUpdateAceIdentityMap(array &$aces)
{
diff --git a/Acl/Dbal/MutableAclProvider.php b/Acl/Dbal/MutableAclProvider.php
index 9050cf8..f1c5e08 100644
--- a/Acl/Dbal/MutableAclProvider.php
+++ b/Acl/Dbal/MutableAclProvider.php
@@ -148,7 +148,6 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
* @param string $propertyName
* @param mixed $oldValue
* @param mixed $newValue
- * @return void
*/
public function propertyChanged($sender, $propertyName, $oldValue, $newValue)
{
@@ -643,7 +642,6 @@ QUERY;
* Creates the ACL for the passed object identity
*
* @param ObjectIdentityInterface $oid
- * @return void
*/
private function createObjectIdentity(ObjectIdentityInterface $oid)
{
@@ -695,7 +693,6 @@ QUERY;
* Deletes all ACEs for the given object identity primary key.
*
* @param integer $oidPK
- * @return void
*/
private function deleteAccessControlEntries($oidPK)
{
@@ -706,7 +703,6 @@ QUERY;
* Deletes the object identity from the database.
*
* @param integer $pk
- * @return void
*/
private function deleteObjectIdentity($pk)
{
@@ -717,7 +713,6 @@ QUERY;
* Deletes all entries from the relations table from the database.
*
* @param integer $pk
- * @return void
*/
private function deleteObjectIdentityRelations($pk)
{
@@ -728,7 +723,6 @@ QUERY;
* This regenerates the ancestor table which is used for fast read access.
*
* @param AclInterface $acl
- * @return void
*/
private function regenerateAncestorRelations(AclInterface $acl)
{
@@ -749,7 +743,6 @@ QUERY;
*
* @param string $name
* @param array $changes
- * @return void
*/
private function updateFieldAceProperty($name, array $changes)
{
@@ -806,7 +799,6 @@ QUERY;
*
* @param string $name
* @param array $changes
- * @return void
*/
private function updateAceProperty($name, array $changes)
{
@@ -860,7 +852,6 @@ QUERY;
* Persists the changes which were made to ACEs to the database.
*
* @param \SplObjectStorage $aces
- * @return void
*/
private function updateAces(\SplObjectStorage $aces)
{
diff --git a/Acl/Dbal/Schema.php b/Acl/Dbal/Schema.php
index dd8cf08..97372f0 100644
--- a/Acl/Dbal/Schema.php
+++ b/Acl/Dbal/Schema.php
@@ -26,7 +26,6 @@ final class Schema extends BaseSchema
* Constructor
*
* @param array $options the names for tables
- * @return void
*/
public function __construct(array $options)
{
@@ -43,8 +42,6 @@ final class Schema extends BaseSchema
/**
* Adds the class table to the schema
- *
- * @return void
*/
protected function addClassTable()
{
@@ -57,8 +54,6 @@ final class Schema extends BaseSchema
/**
* Adds the entry table to the schema
- *
- * @return void
*/
protected function addEntryTable()
{
@@ -87,8 +82,6 @@ final class Schema extends BaseSchema
/**
* Adds the object identity table to the schema
- *
- * @return void
*/
protected function addObjectIdentitiesTable()
{
@@ -109,8 +102,6 @@ final class Schema extends BaseSchema
/**
* Adds the object identity relation table to the schema
- *
- * @return void
*/
protected function addObjectIdentityAncestorsTable()
{
@@ -128,8 +119,6 @@ final class Schema extends BaseSchema
/**
* Adds the security identity table to the schema
- *
- * @return void
*/
protected function addSecurityIdentitiesTable()
{