コード例 #1
0
ファイル: RestService.php プロジェクト: realboard/dbinstance
 /**
  * {@inheritdoc}
  */
 public function __construct()
 {
     parent::__construct();
     $this->serviceHandler = new RestServiceHandler($this->authentication);
 }
コード例 #2
0
ファイル: SoapService.php プロジェクト: realboard/dbinstance
 /**
  * {@inheritdoc}
  */
 public function __construct()
 {
     ini_set('soap.wsdl_cache_enabled', 0);
     parent::__construct();
     $this->serviceHandler = new SoapServiceHandler($this->authentication);
 }