Support of older PHP versions removed: MimeFilter does not sanitize PHP 5.4.x error

This commit is contained in:
Petr Bechyně
2017-02-22 12:09:22 +01:00
parent cf6e147c26
commit 0e2c33faf8
4 changed files with 20 additions and 24 deletions

View File

@ -6,10 +6,10 @@ use BeSimple\SoapCommon\SoapResponse as CommonSoapResponse;
class SoapResponse extends CommonSoapResponse
{
/**
* @var mixed
*/
/** @var mixed */
protected $responseObject;
/** @var SoapResponseTracingData */
protected $tracingData;
public function getResponseContent()
{
@ -25,4 +25,19 @@ class SoapResponse extends CommonSoapResponse
{
$this->responseObject = $responseObject;
}
public function hasTracingData()
{
return $this->tracingData !== null;
}
public function getTracingData()
{
return $this->tracingData;
}
public function setTracingData(SoapResponseTracingData $tracingData)
{
$this->tracingData = $tracingData;
}
}