コード例 #1
0
 private static function query_bo($host, $scheme, SAI_CurlInterface $curlConnector)
 {
     try {
         $info_connector = new AfsAboutConnector($host, null, $scheme, $curlConnector);
         self::$info = $info_connector->get_information();
     } catch (Exception $e) {
         throw new AfsBOWSException('Cannot retrieve Back Office information', 1, $e);
     }
 }
コード例 #2
0
ファイル: afs_paf_connector.php プロジェクト: antidot/php_api
 private function get_bo_version()
 {
     return AfsBOWSInformationCache::get_information($this->host, $this->scheme, $this->curlConnector)->get_gen_version();
 }