| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 79 | protected function prepareRequest() |
||
| 80 | { |
||
| 81 | if (!$this->request instanceof Request) { |
||
| 82 | $this->request = $this->getRequest() |
||
| 83 | ->method(Http::PUT) |
||
| 84 | ->uri( |
||
| 85 | $this->apiConfiguration->getBaseUri() |
||
| 86 | . self::ENDPOINT |
||
| 87 | . self::SLASH |
||
| 88 | . $this->orderId |
||
| 89 | . self::SLASH |
||
| 90 | . self::CONFIRM_ENDPOINT |
||
| 91 | ) |
||
| 96 |