commerce-8.x-2.8/src/Resolver/LocaleResolverInterface.php
src/Resolver/LocaleResolverInterface.php
<?php
namespace Drupal\commerce\Resolver;
/**
* Defines the interface for locale resolvers.
*/
interface LocaleResolverInterface {
/**
* Resolves the locale.
*
* @return \Drupal\commerce\Locale|null
* The locale object, if resolved. Otherwise NULL, indicating that the next
* resolver in the chain should be called.
*/
public function resolve();
}
