Newscoop\Entity\Repository\ThemeRepository::uninstall PHP Метод

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

Uninstall theme
public uninstall ( integer $id ) : void
$id integer
Результат void
    public function uninstall($id)
    {
        $em = $this->getEntityManager();
        $theme = $em->getReference($this->getEntityName(), (int) $id);
        $em->remove($theme);
    }