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