コード例 #1
0
 public function __construct(Game $game, Chat $chat, Player $player)
 {
     parent::__construct();
     $this->game = $game;
     $this->chat = $chat;
     $this->player = $player;
 }
コード例 #2
0
ファイル: BansController.php プロジェクト: BP4U/BFAdminCP
 public function __construct()
 {
     parent::__construct();
     $this->repository = App::make('BFACP\\Repositories\\BanRepository');
     try {
         $this->metabans = App::make('BFACP\\Libraries\\Metabans');
     } catch (MetabansException $e) {
     }
 }
コード例 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->guzzle = \App::make('GuzzleHttp\\Client');
 }
コード例 #4
0
ファイル: UsersController.php プロジェクト: BP4U/BFAdminCP
 public function __construct()
 {
     parent::__construct();
 }
コード例 #5
0
 public function __construct()
 {
     parent::__construct();
     $this->repository = \App::make('BFACP\\Repositories\\PlayerRepository');
 }
コード例 #6
0
ファイル: PlayersController.php プロジェクト: BP4U/BFAdminCP
 public function __construct(PlayerRepository $repository)
 {
     parent::__construct();
     $this->repository = $repository;
 }