summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Acl/Domain/ObjectIdentity.php2
-rw-r--r--Acl/Domain/UserSecurityIdentity.php4
-rw-r--r--Acl/Permission/MaskBuilderInterface.php8
3 files changed, 7 insertions, 7 deletions
diff --git a/Acl/Domain/ObjectIdentity.php b/Acl/Domain/ObjectIdentity.php
index ec817e2..d2f353e 100644
--- a/Acl/Domain/ObjectIdentity.php
+++ b/Acl/Domain/ObjectIdentity.php
@@ -52,7 +52,7 @@ final class ObjectIdentity implements ObjectIdentityInterface
*
* @param object $domainObject
*
- * @return ObjectIdentity
+ * @return self
*
* @throws InvalidDomainObjectException
*/
diff --git a/Acl/Domain/UserSecurityIdentity.php b/Acl/Domain/UserSecurityIdentity.php
index ea17c63..5766148 100644
--- a/Acl/Domain/UserSecurityIdentity.php
+++ b/Acl/Domain/UserSecurityIdentity.php
@@ -52,7 +52,7 @@ final class UserSecurityIdentity implements SecurityIdentityInterface
*
* @param UserInterface $user
*
- * @return UserSecurityIdentity
+ * @return self
*/
public static function fromAccount(UserInterface $user)
{
@@ -64,7 +64,7 @@ final class UserSecurityIdentity implements SecurityIdentityInterface
*
* @param TokenInterface $token
*
- * @return UserSecurityIdentity
+ * @return self
*/
public static function fromToken(TokenInterface $token)
{
diff --git a/Acl/Permission/MaskBuilderInterface.php b/Acl/Permission/MaskBuilderInterface.php
index ef183de..98184c5 100644
--- a/Acl/Permission/MaskBuilderInterface.php
+++ b/Acl/Permission/MaskBuilderInterface.php
@@ -21,7 +21,7 @@ interface MaskBuilderInterface
*
* @param int $mask
*
- * @return MaskBuilderInterface
+ * @return $this
*
* @throws \InvalidArgumentException if $mask is not an integer
*/
@@ -39,7 +39,7 @@ interface MaskBuilderInterface
*
* @param mixed $mask
*
- * @return MaskBuilderInterface
+ * @return $this
*
* @throws \InvalidArgumentException
*/
@@ -50,7 +50,7 @@ interface MaskBuilderInterface
*
* @param mixed $mask
*
- * @return MaskBuilderInterface
+ * @return $this
*
* @throws \InvalidArgumentException
*/
@@ -59,7 +59,7 @@ interface MaskBuilderInterface
/**
* Resets the PermissionBuilder.
*
- * @return MaskBuilderInterface
+ * @return $this
*/
public function reset();