/**
  * @param Attachment $attachment
  */
 public function addAttachment(Attachment $attachment)
 {
     $this->attachments->add($attachment);
 }
示例#2
0
 public function removeAttachment(Attachment $attachment)
 {
     $this->attachments->removeElement($attachment);
 }
示例#3
0
 /**
  * Remove attachments
  *
  * @param \Attachment $attachments
  */
 public function removeAttachment(\Attachment $attachments)
 {
     /** @noinspection PhpUndefinedMethodInspection */
     $this->attachments->removeElement($attachments);
 }