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

@ -13,8 +13,6 @@
namespace BeSimple\SoapCommon;
use BeSimple\SoapClient\SoapResponseTracingData;
/**
* SOAP response message.
*
@ -23,21 +21,4 @@ use BeSimple\SoapClient\SoapResponseTracingData;
*/
class SoapResponse extends SoapMessage
{
/** @var SoapResponseTracingData */
protected $tracingData;
public function hasTracingData()
{
return $this->tracingData !== null;
}
public function getTracingData()
{
return $this->tracingData;
}
public function setTracingData(SoapResponseTracingData $tracingData)
{
$this->tracingData = $tracingData;
}
}