Skip to content

Commit

Permalink
Missing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mducharme committed Feb 9, 2017
1 parent b083105 commit f70c806
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Charcoal/Object/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,11 @@ public function preUpdate(array $properties = null)
return true;
}


/**
* @param string|string[] $permissions The required ACL permissions.
* @return Content Chainable
*/
public function setRequiredAclPermissions($permissions)
{
if ($permissions === null || !$permissions) {
Expand All @@ -305,6 +310,9 @@ public function setRequiredAclPermissions($permissions)
return $this;
}

/**
* @return string[]
*/
public function requiredAclPermissions()
{
return $this->requiredAclPermissions;
Expand Down

0 comments on commit f70c806

Please sign in to comment.