1 | <?php |
||
12 | class PayoneToCartBridge implements PayoneToCartInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var \Spryker\Client\Cart\CartClientInterface |
||
16 | */ |
||
17 | protected $cartClient; |
||
18 | |||
19 | /** |
||
20 | * @param \Spryker\Client\Cart\CartClientInterface $cartClient |
||
21 | */ |
||
22 | public function __construct($cartClient) |
||
26 | |||
27 | /** |
||
28 | * @param \Generated\Shared\Transfer\QuoteTransfer $quoteTransfer |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | public function storeQuote(QuoteTransfer $quoteTransfer) |
||
36 | |||
37 | /** |
||
38 | * @return \Generated\Shared\Transfer\QuoteTransfer |
||
39 | */ |
||
40 | public function getQuote() |
||
44 | } |
||
45 |