Newscoop\Entity\Repository\ThemeRepository::uninstall PHP Method

uninstall() public method

Uninstall theme
public uninstall ( integer $id ) : void
$id integer
return void
    public function uninstall($id)
    {
        $em = $this->getEntityManager();
        $theme = $em->getReference($this->getEntityName(), (int) $id);
        $em->remove($theme);
    }