public function __construct(Game $game, Chat $chat, Player $player)
 {
     parent::__construct();
     $this->game = $game;
     $this->chat = $chat;
     $this->player = $player;
 }
Exemple #2
0
 public function __construct()
 {
     parent::__construct();
     $this->repository = App::make('BFACP\\Repositories\\BanRepository');
     try {
         $this->metabans = App::make('BFACP\\Libraries\\Metabans');
     } catch (MetabansException $e) {
     }
 }
 public function __construct()
 {
     parent::__construct();
     $this->guzzle = \App::make('GuzzleHttp\\Client');
 }
Exemple #4
0
 public function __construct()
 {
     parent::__construct();
 }
 public function __construct()
 {
     parent::__construct();
     $this->repository = \App::make('BFACP\\Repositories\\PlayerRepository');
 }
Exemple #6
0
 public function __construct(PlayerRepository $repository)
 {
     parent::__construct();
     $this->repository = $repository;
 }