removeAttachment() public method

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