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

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

Install theme
public install ( $offset ) : void
Результат void
    public function install($offset)
    {
        $theme = $this->loader->find($offset);
        $theme->setInstalledVersion();
        $em = $this->getEntityManager();
        $em->persist($theme);
    }