| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | 1 | public function stamped(StampedCommand $command): StampedResult |
|
| 26 | { |
||
| 27 | 1 | $soapCaller = $this->settings()->createCallerForService(Services::retentions()); |
|
| 28 | 1 | $rawResponse = $soapCaller->call('stamped', [ |
|
| 29 | 1 | 'xml' => $command->xml(), |
|
| 30 | ]); |
||
| 31 | 1 | $result = new StampedResult($rawResponse); |
|
| 32 | 1 | return $result; |
|
| 33 | } |
||
| 35 |