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