Total Complexity | 3 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | class MerchantSwitcherWidgetToQuoteClientBridge implements MerchantSwitcherWidgetToQuoteClientInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \Spryker\Client\Quote\QuoteClientInterface |
||
16 | */ |
||
17 | protected $quoteClient; |
||
18 | |||
19 | /** |
||
20 | * @param \Spryker\Client\Quote\QuoteClientInterface $quoteClient |
||
21 | */ |
||
22 | public function __construct($quoteClient) |
||
23 | { |
||
24 | $this->quoteClient = $quoteClient; |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return \Generated\Shared\Transfer\QuoteTransfer |
||
29 | */ |
||
30 | public function getQuote() |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param \Generated\Shared\Transfer\QuoteTransfer $quoteTransfer |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | public function setQuote(QuoteTransfer $quoteTransfer) |
||
45 |