Inheritance: extends PartKeepr\UploadedFileBundle\Entity\UploadedFile
Example #1
0
 /**
  * Removes a Part Attachment
  *
  * @param PartAttachment $partAttachment An attachment to remove
  */
 public function removeAttachment($partAttachment)
 {
     $partAttachment->setPart(null);
     $this->attachments->removeElement($partAttachment);
 }