summaryrefslogtreecommitdiffstats
path: root/Acl/Model
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Model')
-rw-r--r--Acl/Model/AclProviderInterface.php2
-rw-r--r--Acl/Model/EntryInterface.php4
-rw-r--r--Acl/Model/MutableAclProviderInterface.php4
3 files changed, 5 insertions, 5 deletions
diff --git a/Acl/Model/AclProviderInterface.php b/Acl/Model/AclProviderInterface.php
index 12f55e0..ab2c431 100644
--- a/Acl/Model/AclProviderInterface.php
+++ b/Acl/Model/AclProviderInterface.php
@@ -33,7 +33,7 @@ interface AclProviderInterface
* @throws AclNotFoundException when there is no ACL
* @param ObjectIdentityInterface $oid
* @param array $sids
- * @return AclInterface
+ * @return \Symfony\Component\Security\Acl\Model\AclInterface
*/
function findAcl(ObjectIdentityInterface $oid, array $sids = array());
diff --git a/Acl/Model/EntryInterface.php b/Acl/Model/EntryInterface.php
index 6fe0dc8..0a3811a 100644
--- a/Acl/Model/EntryInterface.php
+++ b/Acl/Model/EntryInterface.php
@@ -24,7 +24,7 @@ interface EntryInterface extends \Serializable
/**
* The ACL this ACE is associated with.
*
- * @return AclInterface
+ * @return \Symfony\Component\Security\Acl\Model\AclInterface
*/
function getAcl();
@@ -45,7 +45,7 @@ interface EntryInterface extends \Serializable
/**
* The security identity associated with this ACE
*
- * @return SecurityIdentityInterface
+ * @return \Symfony\Component\Security\Acl\Model\SecurityIdentityInterface
*/
function getSecurityIdentity();
diff --git a/Acl/Model/MutableAclProviderInterface.php b/Acl/Model/MutableAclProviderInterface.php
index c04eb31..9d3e5e5 100644
--- a/Acl/Model/MutableAclProviderInterface.php
+++ b/Acl/Model/MutableAclProviderInterface.php
@@ -23,8 +23,8 @@ interface MutableAclProviderInterface extends AclProviderInterface
*
* @throws AclAlreadyExistsException when there already is an ACL for the given
* object identity
- * @param ObjectIdentityInterface $oid
- * @return AclInterface
+ * @param \Symfony\Component\Security\Acl\Model\ObjectIdentityInterface $oid
+ * @return \Symfony\Component\Security\Acl\Model\AclInterface
*/
function createAcl(ObjectIdentityInterface $oid);