Newscoop\Services\AttachmentService::removeAttachmentFormArticle PHP Méthode

removeAttachmentFormArticle() public méthode

public removeAttachmentFormArticle ( Article $article, Attachment $attachment )
$article Newscoop\Entity\Article
$attachment Newscoop\Entity\Attachment
    public function removeAttachmentFormArticle(Article $article, Attachment $attachment)
    {
        $article->getAttachments()->removeElement($attachment);
        $this->em->flush();
    }