コード例 #1
0
ファイル: Cache.php プロジェクト: browserfs/website
 protected function __construct($serviceConfig)
 {
     parent::__construct($serviceConfig);
     $this->init();
 }
コード例 #2
0
ファイル: Website.php プロジェクト: browserfs/website
 /**
  * The service "Website" provides us with information about the
  * website we're developing.
  */
 protected function __construct($properties)
 {
     // THIS SHOULD BE THE FIRST INSTRUCTION
     parent::__construct($properties);
     $this->init();
 }
コード例 #3
0
ファイル: Staging.php プロジェクト: browserfs/website
 protected function __construct($serviceProperties)
 {
     parent::__construct($serviceProperties);
     $this->init();
 }