Beispiel #1
0
 /**
  * Add a new theme to the hierarchy. Optionally define a parent theme.
  *
  * @param   \MauroMoreno\LaravelTheme\Theme $theme
  * @param   string $parentName
  *
  * @return  \MauroMoreno\LaravelTheme\Theme
  */
 public function add(Theme $theme, $parentName = '')
 {
     $parent = $this->find($parentName);
     $theme->addParent($parent ? $parent : $this->root);
     return $theme;
 }