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