| Total Complexity | 8 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class WSService implements BpmnInterfaceImplementationInterface |
||
| 10 | { |
||
| 11 | protected $name; |
||
| 12 | |||
| 13 | protected $location; |
||
| 14 | |||
| 15 | protected $operations = []; |
||
| 16 | |||
| 17 | protected $wsdlLocation; |
||
| 18 | |||
| 19 | protected $client; |
||
| 20 | |||
| 21 | public function __construct(string $name, string $location, $data) |
||
| 30 | } |
||
| 31 | } |
||
| 32 | |||
| 33 | public function addOperation(WSOperation $operation): void |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getClient(): SyncWebServiceClientInterface |
||
| 46 | } |
||
| 47 | |||
| 48 | public function getName(): string |
||
| 49 | { |
||
| 50 | return $this->name; |
||
| 51 | } |
||
| 52 | |||
| 53 | public function getLocation(): string |
||
| 56 | } |
||
| 57 | } |
||
| 58 |