for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Apache OSL-2
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Yves\AmazonPay\Dependency\Client;
class AmazonPayToCartBridge implements AmazonPayToCartInterface
{
* @var \Spryker\Client\Cart\CartClientInterface
protected $cartClient;
* @param \Spryker\Client\Cart\CartClientInterface $cartClient
public function __construct($cartClient)
$this->cartClient = $cartClient;
}
* @return void
public function clearQuote()
$this->cartClient->clearQuote();