Newscoop\Services\AttachmentService::remove PHP Метод

remove() публичный Метод

public remove ( Attachment $attachment )
$attachment Newscoop\Entity\Attachment
    public function remove(Attachment $attachment)
    {
        $filesystem = new Filesystem();
        $file = $this->getStorageLocation($attachment);
        $filesystem->remove($file);
        $this->em->remove($attachment);
        $this->em->flush();
    }