2012-04-21 20:16:33 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BeSimple\SoapServer;
|
|
|
|
|
|
|
|
use BeSimple\SoapCommon\SoapResponse as CommonSoapResponse;
|
|
|
|
|
|
|
|
class SoapResponse extends CommonSoapResponse
|
|
|
|
{
|
2016-10-27 16:24:44 +02:00
|
|
|
public function getResponseContent()
|
2012-04-21 20:16:33 +02:00
|
|
|
{
|
|
|
|
// set Content-Type header
|
2016-10-27 16:24:44 +02:00
|
|
|
header('Content-Type: ' . $this->getContentType());
|
2013-11-06 16:48:44 +01:00
|
|
|
|
2016-10-27 16:24:44 +02:00
|
|
|
return $this->getContent();
|
2012-04-21 20:16:33 +02:00
|
|
|
}
|
2013-11-06 16:48:44 +01:00
|
|
|
}
|