for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* For full license information, please view the LICENSE file that was distributed with this source code.
*/
namespace SprykerEco\Yves\Braintree\Dependency\Client;
class BraintreeToPriceClientBridge implements BraintreeToPriceClientInterface
{
* @var \Spryker\Client\Price\PriceClientInterface
protected $priceClient;
* @param \Spryker\Client\Price\PriceClientInterface $priceClient
public function __construct($priceClient)
$this->priceClient = $priceClient;
}
* @return string
public function getNetPriceModeIdentifier()
return $this->priceClient->getNetPriceModeIdentifier();