diff options
author | Helmer Aaviksoo <helmer.aaviksoo@gmail.com> | 2011-10-07 11:15:35 +0300 |
---|---|---|
committer | Helmer Aaviksoo <helmer.aaviksoo@gmail.com> | 2011-10-07 11:15:35 +0300 |
commit | 6bfd7888e845d89b550d2c40b09b44312f327fa5 (patch) | |
tree | 894063a6507a0021b06842e75e68e7fd98ee539d /Acl/Model/MutableAclProviderInterface.php | |
parent | 323d5fe1c067338a5ebe99d97b91b8ab9f90218c (diff) | |
download | symfony-security-6bfd7888e845d89b550d2c40b09b44312f327fa5.zip symfony-security-6bfd7888e845d89b550d2c40b09b44312f327fa5.tar.gz symfony-security-6bfd7888e845d89b550d2c40b09b44312f327fa5.tar.bz2 |
Removed redundant "@return void"-s
Diffstat (limited to 'Acl/Model/MutableAclProviderInterface.php')
-rw-r--r-- | Acl/Model/MutableAclProviderInterface.php | 2 |
1 files changed, 0 insertions, 2 deletions
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); } |