summaryrefslogtreecommitdiffstats
path: root/Acl/Domain/Entry.php
diff options
context:
space:
mode:
Diffstat (limited to 'Acl/Domain/Entry.php')
-rw-r--r--Acl/Domain/Entry.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/Acl/Domain/Entry.php b/Acl/Domain/Entry.php
index 42449c4..b5eb28b 100644
--- a/Acl/Domain/Entry.php
+++ b/Acl/Domain/Entry.php
@@ -34,14 +34,14 @@ class Entry implements AuditableEntryInterface
/**
* Constructor
*
- * @param integer $id
+ * @param int $id
* @param AclInterface $acl
* @param SecurityIdentityInterface $sid
* @param string $strategy
- * @param integer $mask
- * @param Boolean $granting
- * @param Boolean $auditFailure
- * @param Boolean $auditSuccess
+ * @param int $mask
+ * @param bool $granting
+ * @param bool $auditFailure
+ * @param bool $auditSuccess
*/
public function __construct($id, AclInterface $acl, SecurityIdentityInterface $sid, $strategy, $mask, $granting, $auditFailure, $auditSuccess)
{
@@ -56,7 +56,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getAcl()
{
@@ -64,7 +64,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getMask()
{
@@ -72,7 +72,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getId()
{
@@ -80,7 +80,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getSecurityIdentity()
{
@@ -88,7 +88,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function getStrategy()
{
@@ -96,7 +96,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isAuditFailure()
{
@@ -104,7 +104,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isAuditSuccess()
{
@@ -112,7 +112,7 @@ class Entry implements AuditableEntryInterface
}
/**
- * {@inheritDoc}
+ * {@inheritdoc}
*/
public function isGranting()
{
@@ -125,7 +125,7 @@ class Entry implements AuditableEntryInterface
* Do never call this method directly. Use the respective methods on the
* AclInterface instead.
*
- * @param Boolean $boolean
+ * @param bool $boolean
*/
public function setAuditFailure($boolean)
{
@@ -138,7 +138,7 @@ class Entry implements AuditableEntryInterface
* Do never call this method directly. Use the respective methods on the
* AclInterface instead.
*
- * @param Boolean $boolean
+ * @param bool $boolean
*/
public function setAuditSuccess($boolean)
{
@@ -151,7 +151,7 @@ class Entry implements AuditableEntryInterface
* Do never call this method directly. Use the respective methods on the
* AclInterface instead.
*
- * @param integer $mask
+ * @param int $mask
*/
public function setMask($mask)
{