PartKeepr\FootprintBundle\Entity\Footprint::removeAttachment PHP 메소드

removeAttachment() 공개 메소드

Removes an IC Logo.
public removeAttachment ( FootprintAttachment $attachment ) : void
$attachment FootprintAttachment
리턴 void
    public function removeAttachment(FootprintAttachment $attachment)
    {
        $attachment->setFootprint(null);
        $this->attachments->removeElement($attachment);
    }