Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
25 | 1 | public function getRelatedSignature(GetRelatedSignatureCommand $command): GetRelatedSignatureResult |
|
26 | { |
||
27 | 1 | $soapCaller = $this->settings()->createCallerForService(Services::cancel()); |
|
28 | 1 | $rawResponse = $soapCaller->call('get_related_signature', [ |
|
29 | 1 | 'xml' => $command->xml(), |
|
30 | ]); |
||
31 | 1 | return new GetRelatedSignatureResult($rawResponse); |
|
32 | } |
||
34 |