コード例 #1
0
ファイル: SimpleXMLResponse.php プロジェクト: saiber/www
 public function __construct(SimpleXMLElement $xml)
 {
     parent::__construct($xml->asXML());
     $this->setHeader('Content-type', 'text/xml');
 }
コード例 #2
0
ファイル: jamp.php プロジェクト: baratine/baratine-php
 function __construct($rawResponse, $status, object $error)
 {
     parent::__construct($rawResponse);
     $this->setStatus($status);
     $this->setError($error);
     $this->setIsError(true);
 }