Ejemplo n.º 1
0
 /**
  * @param ThemeManager $theme
  * @param MediaRepositoryInterface $media
  */
 public function __construct(ThemeManager $theme, MediaRepositoryInterface $media)
 {
     $this->media = $media;
     parent::__construct($theme);
 }
Ejemplo n.º 2
0
 /**
  * @param ThemeManager $theme
  * @param MenuManager $menu
  * @param AccountManager $account
  */
 public function __construct(ThemeManager $theme, MenuManager $menu, AccountManager $account)
 {
     $this->menu = $menu;
     $this->account = $account;
     parent::__construct($theme);
 }
Ejemplo n.º 3
0
 /**
  * @param ThemeManager $theme
  */
 public function __construct(ThemeManager $theme)
 {
     parent::__construct($theme);
 }
Ejemplo n.º 4
0
 /**
  * @param ThemeManager $theme
  * @param MenuManager $menu
  */
 public function __construct(ThemeManager $theme, MenuManager $menu)
 {
     $this->menu = $menu;
     parent::__construct($theme);
 }