2011-12-11 21:20:35 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BeSimple\SoapClient;
|
|
|
|
|
|
|
|
use BeSimple\SoapCommon\SoapResponse as CommonSoapResponse;
|
|
|
|
|
|
|
|
class SoapResponse extends CommonSoapResponse
|
|
|
|
{
|
2017-02-17 03:19:22 +01:00
|
|
|
/**
|
|
|
|
* @var mixed
|
|
|
|
*/
|
|
|
|
protected $responseObject;
|
|
|
|
|
2017-02-03 15:22:37 +01:00
|
|
|
public function getResponseContent()
|
2011-12-11 21:20:35 +01:00
|
|
|
{
|
2017-02-03 15:22:37 +01:00
|
|
|
return $this->getContent();
|
2011-12-11 21:20:35 +01:00
|
|
|
}
|
2017-02-17 03:19:22 +01:00
|
|
|
|
|
|
|
public function getResponseObject()
|
|
|
|
{
|
|
|
|
return $this->responseObject;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setResponseObject($responseObject)
|
|
|
|
{
|
|
|
|
$this->responseObject = $responseObject;
|
|
|
|
}
|
2013-12-02 15:14:06 +01:00
|
|
|
}
|