Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function update(QuoteTransfer $quoteTransfer) |
||
22 | { |
||
23 | $amazonCallTransfer = $this->convertQuoteTransferToAmazonPayTransfer($quoteTransfer); |
||
24 | /** @var \Generated\Shared\Transfer\CustomerTransfer $customer */ |
||
25 | $customer = $this->executionAdapter->call($amazonCallTransfer); |
||
26 | |||
27 | $this->updateCustomer($quoteTransfer, $customer); |
||
28 | |||
29 | return $quoteTransfer; |
||
30 | } |
||
54 |