removeAttachment() public méthode

public removeAttachment ( PermissionAttachment $attachment )
$attachment PermissionAttachment
 /**
  * @param PermissionAttachment $attachment
  */
 public function removeAttachment(PermissionAttachment $attachment)
 {
     $this->perm->removeAttachment($attachment);
 }
Exemple #2
0
 /**
  * @param PermissionAttachment $attachment
  * @return bool
  */
 public function removeAttachment(PermissionAttachment $attachment)
 {
     if ($this->perm == null) {
         return false;
     }
     $this->perm->removeAttachment($attachment);
     return true;
 }