resolver = $resolver; $this->config = $config; } /** * @inheritdoc */ public function getDefaultLocalePath() { return $this->resolver->getDefaultLocalePath(); } /** * @inheritdoc */ public function setDefaultLocale($locale) { return $this->resolver->setDefaultLocale($locale); } /** * @inheritdoc */ public function getDefaultLocale() { return $this->resolver->getDefaultLocale(); } /** * @inheritdoc */ public function setLocale($locale = null) { return $this->resolver->setLocale($locale); } /** * Gets store's locale or the `en_US` locale if store's locale does not supported by PayPal. * * @return string */ public function getLocale() { $locale = $this->resolver->getLocale(); $allowedLocales = $this->config->getValue('supported_locales'); return strpos($allowedLocales, $locale) !== false ? $locale : 'en_US'; } /** * @inheritdoc */ public function emulate($scopeId) { return $this->resolver->emulate($scopeId); } /** * @inheritdoc */ public function revert() { return $this->resolver->revert(); } }