コード例 #1
0
 /**
  * 
  */
 function __construct()
 {
     parent::__construct();
 }
コード例 #2
0
ファイル: PayLinkToken.php プロジェクト: citypay/php-sdk
 /**
  * @param $id
  * @param $url
  */
 function __construct($id, $url)
 {
     parent::__construct();
     $this->id = $id;
     $this->url = $url;
 }
コード例 #3
0
ファイル: TransportError.php プロジェクト: citypay/php-sdk
 /**
  * 
  * @param type $responseCode
  */
 protected function __construct($responseCode)
 {
     parent::__construct();
     $this->responseCode = $responseCode;
 }
コード例 #4
0
ファイル: PaylinkApiError.php プロジェクト: citypay/php-sdk
 /**
  * 
  * @param object $responsePayload
  */
 function __construct($responsePayload)
 {
     parent::__construct();
     $this->responsePayload = $responsePayload;
 }