Karlomikus\Theme\Theme::set PHP Метод

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

Set current active theme
public set ( string $theme )
$theme string Theme namespace
    public function set($theme)
    {
        if (!$this->has($theme)) {
            throw new ThemeNotFoundException($theme);
        }
        $this->loadTheme($theme);
    }