summaryrefslogtreecommitdiffstats
path: root/Acl
diff options
context:
space:
mode:
authorFabien Potencier <fabien.potencier@gmail.com>2011-08-13 19:27:36 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2011-08-13 19:27:36 +0200
commitfa4b69a12979d49baeb177c81da1c318de361df2 (patch)
tree91ef528a24e416523bb25859a702d8d859a0e2af /Acl
parent96c4c94be0646bda1e77b48e82c930446d97b930 (diff)
downloadsymfony-security-fa4b69a12979d49baeb177c81da1c318de361df2.zip
symfony-security-fa4b69a12979d49baeb177c81da1c318de361df2.tar.gz
symfony-security-fa4b69a12979d49baeb177c81da1c318de361df2.tar.bz2
Revert "expanded namespaces within phpdoc (special for PhpStorm)"
This reverts commit 6e7439e73ade26bca01edc193c836b35aaa91ffe.
Diffstat (limited to 'Acl')
-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 ab2c431..12f55e0 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 \Symfony\Component\Security\Acl\Model\AclInterface
+ * @return AclInterface
*/
function findAcl(ObjectIdentityInterface $oid, array $sids = array());
diff --git a/Acl/Model/EntryInterface.php b/Acl/Model/EntryInterface.php
index 0a3811a..6fe0dc8 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 \Symfony\Component\Security\Acl\Model\AclInterface
+ * @return AclInterface
*/
function getAcl();
@@ -45,7 +45,7 @@ interface EntryInterface extends \Serializable
/**
* The security identity associated with this ACE
*
- * @return \Symfony\Component\Security\Acl\Model\SecurityIdentityInterface
+ * @return SecurityIdentityInterface
*/
function getSecurityIdentity();
diff --git a/Acl/Model/MutableAclProviderInterface.php b/Acl/Model/MutableAclProviderInterface.php
index 9d3e5e5..c04eb31 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 \Symfony\Component\Security\Acl\Model\ObjectIdentityInterface $oid
- * @return \Symfony\Component\Security\Acl\Model\AclInterface
+ * @param ObjectIdentityInterface $oid
+ * @return AclInterface
*/
function createAcl(ObjectIdentityInterface $oid);