コード例 #1
0
 public function __construct(Operation $operation, $name)
 {
     parent::__construct($operation->getDefinition());
     $this->name = $name;
     $this->operation = $operation;
 }
コード例 #2
0
 public function __construct(PortType $port, $name)
 {
     parent::__construct($port->getDefinition());
     $this->name = $name;
     $this->port = $port;
 }
コード例 #3
0
ファイル: Operation.php プロジェクト: MI-LA01/wsdl-reader
 public function __construct(Binding $binding, $name)
 {
     parent::__construct($binding->getDefinition());
     $this->name = $name;
     $this->binding = $binding;
 }
コード例 #4
0
 public function __construct(Service $service, $name)
 {
     parent::__construct($service->getDefinition());
     $this->name = $name;
     $this->service = $service;
 }