コード例 #1
0
 public function __construct(HighscoreService $highscoreService)
 {
     parent::__construct();
     $this->highscoreService = $highscoreService;
 }
コード例 #2
0
 /**
  * @param AccountService $account
  */
 public function __construct(AccountService $account)
 {
     parent::__construct();
     $this->account = $account;
 }
コード例 #3
0
 public function __construct(AccountService $account)
 {
     parent::__construct();
     $this->beforeFilter('auth');
     $this->account = $account;
 }