コード例 #1
0
ファイル: UserViewController.php プロジェクト: tacki/rp
 public function __construct()
 {
     parent::__construct();
     $this->userRegistrationForm = new UserRegistrationForm();
     $this->userEditForm = new UserEditForm();
     $this->mail = new MailServiceController();
 }
コード例 #2
0
ファイル: RaidViewController.php プロジェクト: tacki/rp
 public function __construct()
 {
     parent::__construct();
     $this->raidCreateForm = new RaidCreateForm();
     $this->raidEditForm = new RaidEditForm();
     $this->raidRegistrationForm = new RaidRegistrationForm();
     $this->raidInviteForm = new RaidInviteForm();
     $this->mail = new MailServiceController();
 }
コード例 #3
0
ファイル: AuthViewController.php プロジェクト: tacki/rp
 public function __construct()
 {
     parent::__construct();
     $this->authForm = new AuthForm();
 }
コード例 #4
0
ファイル: CharacterViewController.php プロジェクト: tacki/rp
 public function __construct()
 {
     parent::__construct();
     $this->characterRegistrationForm = new CharacterRegistrationForm();
     $this->characterEditForm = new CharacterEditForm();
 }