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\Client\Heidelpay\Dependency\Client;
class HeidelpayToLocaleBridge implements HeidelpayToLocaleInterface
{
* @var \Spryker\Client\Locale\LocaleClientInterface
protected $localeClient;
* @param \Spryker\Client\Locale\LocaleClientInterface $localeClient
public function __construct($localeClient)
$this->localeClient = $localeClient;
}
* @return string
public function getCurrentLocale()
return $this->localeClient->getCurrentLocale();