LocaleResolverInterface.php in Price 3.x
Same filename and directory in other branches
Namespace
Drupal\price\ResolverFile
src/Resolver/LocaleResolverInterface.phpView source
<?php
namespace Drupal\price\Resolver;
/**
* Defines the interface for locale resolvers.
*/
interface LocaleResolverInterface {
/**
* Resolves the locale.
*
* @return \Drupal\price\Locale|null
* The locale object, if resolved. Otherwise NULL, indicating that the next
* resolver in the chain should be called.
*/
public function resolve();
}
Interfaces
Name | Description |
---|---|
LocaleResolverInterface | Defines the interface for locale resolvers. |