You are here

CountryResolverInterface.php in Price 8

File

src/Resolver/CountryResolverInterface.php
View 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

Namesort descending Description
CountryResolverInterface Defines the interface for country resolvers.