Replaced QName->getNamespace() by ServiceDefinition->getNamespace() for headers

This commit is contained in:
Francis Besset
2011-09-01 19:40:44 +02:00
parent 57b35c5e62
commit 958efd3431
3 changed files with 8 additions and 8 deletions

View File

@ -23,6 +23,11 @@ class SoapHeader
$this->data = $data;
}
public function __toString()
{
return $this->data;
}
public function getNamespace()
{
return $this->namespace;