Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | abstract class QuoteUpdaterAbstract implements QuoteUpdaterInterface |
||
15 | { |
||
16 | |||
17 | /** |
||
18 | * @var \SprykerEco\Zed\Amazonpay\Business\Api\Adapter\CallAdapterInterface |
||
19 | */ |
||
20 | protected $executionAdapter; |
||
21 | |||
22 | /** |
||
23 | * @param \SprykerEco\Zed\Amazonpay\Business\Api\Adapter\CallAdapterInterface $executionAdapter |
||
24 | */ |
||
25 | public function __construct( |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * @param \Generated\Shared\Transfer\QuoteTransfer $quoteTransfer |
||
33 | * |
||
34 | * @return \Generated\Shared\Transfer\AmazonpayCallTransfer |
||
35 | */ |
||
36 | protected function convertQuoteTransferToAmazonPayTransfer(QuoteTransfer $quoteTransfer) |
||
46 |