コード例 #1
0
ファイル: SoapResponse.php プロジェクト: mablae/BeSimpleSoap
 /**
  * Factory function for SoapResponse.
  *
  * @param string $content  Content
  * @param string $location Location
  * @param string $action   SOAP action
  * @param string $version  SOAP version
  *
  * @return BeSimple\SoapClient\SoapResponse
  */
 public static function create($content, $location, $action, $version)
 {
     $response = new SoapResponse();
     $response->setContent($content);
     $response->setLocation($location);
     $response->setAction($action);
     $response->setVersion($version);
     $contentType = SoapMessage::getContentTypeForVersion($version);
     $response->setContentType($contentType);
     return $response;
 }