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