| 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 | 4 | public function queryPending(QueryPendingCommand $command): QueryPendingResult |
|
| 26 | { |
||
| 27 | 4 | $soapCaller = $this->settings()->createCallerForService(Services::stamping()); |
|
| 28 | 4 | $rawResponse = $soapCaller->call('query_pending', [ |
|
| 29 | 4 | 'uuid' => $command->uuid(), |
|
| 30 | 4 | ]); |
|
| 31 | 4 | return new QueryPendingResult($rawResponse); |
|
| 32 | } |
||
| 34 |