The bundle is back!
The definition of service has changed, read the README.
This commit is contained in:
@ -11,11 +11,13 @@
|
||||
namespace Bundle\WebServiceBundle\Util;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Christian Kerl <christian-kerl@web.de>
|
||||
*/
|
||||
class QName
|
||||
{
|
||||
private $namespace;
|
||||
private $name;
|
||||
|
||||
public static function fromPackedQName($qname)
|
||||
{
|
||||
Assert::thatArgument('qname', preg_match('/^\{(.+)\}(.+)$/', $qname, $matches));
|
||||
@ -23,9 +25,6 @@ class QName
|
||||
return new self($matches[1], $matches[2]);
|
||||
}
|
||||
|
||||
private $namespace;
|
||||
private $name;
|
||||
|
||||
public function __construct($namespace, $name)
|
||||
{
|
||||
$this->namespace = $namespace;
|
||||
|
Reference in New Issue
Block a user