for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Braintree\Dependency\Facade;
class BraintreeToCurrencyFacadeBridge implements BraintreeToCurrencyFacadeInterface
{
* @var \Spryker\Zed\Currency\Business\CurrencyFacadeInterface
protected $currencyFacade;
* @param \Spryker\Zed\Currency\Business\CurrencyFacadeInterface $currencyFacade
public function __construct($currencyFacade)
$this->currencyFacade = $currencyFacade;
}
* @return \Generated\Shared\Transfer\CurrencyTransfer
public function getCurrent()
return $this->currencyFacade->getCurrent();