Total Complexity | 1 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
14 | abstract class AbstractTransaction |
||
15 | { |
||
16 | /** |
||
17 | * @var \SprykerEco\Zed\AmazonPay\Business\Api\Adapter\CallAdapterInterface |
||
18 | */ |
||
19 | protected $executionAdapter; |
||
20 | |||
21 | /** |
||
22 | * @var \SprykerEco\Shared\AmazonPay\AmazonPayConfigInterface |
||
23 | */ |
||
24 | protected $config; |
||
25 | |||
26 | /** |
||
27 | * @var \SprykerEco\Zed\AmazonPay\Business\Payment\Handler\Transaction\Logger\TransactionLoggerInterface |
||
28 | */ |
||
29 | protected $transactionLogger; |
||
30 | |||
31 | /** |
||
32 | * @param \SprykerEco\Zed\AmazonPay\Business\Api\Adapter\CallAdapterInterface $executionAdapter |
||
33 | * @param \SprykerEco\Shared\AmazonPay\AmazonPayConfigInterface $config |
||
34 | * @param \SprykerEco\Zed\AmazonPay\Business\Payment\Handler\Transaction\Logger\TransactionLoggerInterface $transactionLogger |
||
35 | */ |
||
36 | public function __construct( |
||
46 |