__construct() public method

Initializes the class.
public __construct ( )
コード例 #1
0
ファイル: UrlEncoder.php プロジェクト: olek07/GiGaBonus
 /**
  * Initializes the class.
  */
 public function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: UrlDecoder.php プロジェクト: dmitryd/typo3-realurl
 /**
  * Initializes the class.
  */
 public function __construct()
 {
     parent::__construct();
     $this->siteScript = GeneralUtility::getIndpEnv('TYPO3_SITE_SCRIPT');
 }
コード例 #3
0
ファイル: UrlEncoder.php プロジェクト: MaxServ/typo3-realurl
 /**
  * Initializes the class.
  */
 public function __construct()
 {
     parent::__construct();
     $this->pageRepository = $this->tsfe->sys_page;
 }