| Total Complexity | 4 |
| Total Lines | 42 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class AmazonpayToQuoteBridge implements AmazonpayToQuoteInterface |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var \Spryker\Client\Quote\QuoteClientInterface |
||
| 17 | */ |
||
| 18 | protected $quoteClient; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @param \Spryker\Client\Quote\QuoteClientInterface $quoteClient |
||
| 22 | */ |
||
| 23 | public function __construct($quoteClient) |
||
| 24 | { |
||
| 25 | $this->quoteClient = $quoteClient; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return \Generated\Shared\Transfer\QuoteTransfer |
||
| 30 | */ |
||
| 31 | public function getQuote() |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param \Generated\Shared\Transfer\QuoteTransfer $quoteTransfer |
||
| 38 | * |
||
| 39 | * @return static |
||
| 40 | */ |
||
| 41 | public function setQuote(QuoteTransfer $quoteTransfer) |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @return void |
||
| 50 | */ |
||
| 51 | public function clearQuote() |
||
| 57 |