
| Current Path : /var/www/html/store/web/modules/contrib/commerce/src/Resolver/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/store/web/modules/contrib/commerce/src/Resolver/DefaultCountryResolver.php |
<?php
namespace Drupal\commerce\Resolver;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\commerce\Country;
/**
* Returns the site's default country.
*/
class DefaultCountryResolver implements CountryResolverInterface {
/**
* The configuration factory.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* Constructs a new DefaultCountryResolver object.
*
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The config factory.
*/
public function __construct(ConfigFactoryInterface $config_factory) {
$this->configFactory = $config_factory;
}
/**
* {@inheritdoc}
*/
public function resolve() {
$country_code = $this->configFactory->get('system.date')->get('country.default');
return new Country($country_code);
}
}