Example #1
0
 public function __construct(Operation $operation, \DOMElement $node)
 {
     parent::__construct($node);
     $this->operation = $operation;
 }
Example #2
0
 public function __construct(Service $Service, \DOMElement $node)
 {
     parent::__construct($node);
     $this->Service = $Service;
 }
Example #3
0
 public function __construct(PortType $PortType, \DOMElement $node)
 {
     parent::__construct($node);
     $this->PortType = $PortType;
 }
Example #4
0
 public function __construct(Part $MessagePart, \DOMElement $node)
 {
     parent::__construct($node);
     $this->MessagePart = $MessagePart;
 }
Example #5
0
 public function __construct(Message $Message, \DOMElement $node)
 {
     parent::__construct($node);
     $this->Message = $Message;
 }
 public function __construct(OperationFault $Fault, \DOMElement $node)
 {
     parent::__construct($node);
     $this->Fault = $Fault;
 }
Example #7
0
 public function __construct(Binding $Binding, \DOMElement $node)
 {
     parent::__construct($node);
     $this->Binding = $Binding;
 }
 /**
  * MessageEvent constructor.
  * @param OperationMessage $message
  * @param \DOMElement $node
  * @param $type
  */
 public function __construct(OperationMessage $message, \DOMElement $node, $type)
 {
     parent::__construct($node);
     $this->message = $message;
     $this->type = $type;
 }
 public function __construct(Param $param, \DOMElement $node)
 {
     parent::__construct($node);
     $this->param = $param;
 }
 public function __construct(Definitions $definitions, \DOMElement $node)
 {
     parent::__construct($node);
     $this->definitions = $definitions;
 }
Example #11
0
 public function __construct(Port $port, \DOMElement $node)
 {
     parent::__construct($node);
     $this->port = $port;
 }