コード例 #1
0
 /**
  * @param ThemeManager $theme
  * @param MediaRepositoryInterface $media
  */
 public function __construct(ThemeManager $theme, MediaRepositoryInterface $media)
 {
     $this->media = $media;
     parent::__construct($theme);
 }
コード例 #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);
 }
コード例 #3
0
ファイル: SeoController.php プロジェクト: jaffle-be/framework
 /**
  * @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);
 }