removeAttachment() 공개 메소드

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