示例#1
0
 /**
  * @param ThemeManager $theme
  * @param MediaRepositoryInterface $media
  */
 public function __construct(ThemeManager $theme, MediaRepositoryInterface $media)
 {
     $this->media = $media;
     parent::__construct($theme);
 }
 /**
  * @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);
 }
示例#3
0
 /**
  * @param ThemeManager $theme
  */
 public function __construct(ThemeManager $theme)
 {
     parent::__construct($theme);
 }
示例#4
0
 /**
  * @param ThemeManager $theme
  * @param MenuManager $menu
  */
 public function __construct(ThemeManager $theme, MenuManager $menu)
 {
     $this->menu = $menu;
     parent::__construct($theme);
 }