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