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\Client\FactFinderNg\Dependency\Client;
class FactFinderNgToLocaleClientBridge implements FactFinderNgToLocaleClientInterface
{
* @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();