Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
21 | public function update(QuoteTransfer $quoteTransfer) |
||
22 | { |
||
23 | $amazonCallTransfer = $this->convertQuoteTransferToAmazonPayTransfer($quoteTransfer); |
||
24 | $customer = $this->executionAdapter->call($amazonCallTransfer); |
||
25 | |||
26 | $this->updateCustomer($quoteTransfer, $customer); |
||
|
|||
27 | |||
28 | return $quoteTransfer; |
||
29 | } |
||
53 |