You are here

interface DumperInterface in Geocoder 8.2

Same name and namespace in other branches
  1. 8.3 src/DumperInterface.php \Drupal\geocoder\DumperInterface

Provides an interface for geocoder dumper plugins.

Dumpers are plugins that knows to format geographical data into an industry standard format.

Hierarchy

Expanded class hierarchy of DumperInterface

All classes that implement DumperInterface

File

src/DumperInterface.php, line 13

Namespace

Drupal\geocoder
View source
interface DumperInterface {

  /**
   * Dumps the argument into a specific format.
   *
   * @param \Geocoder\Model\Address $address
   *   The address to be formatted.
   *
   * @return string
   *   The formatted address.
   */
  public function dump(Address $address);

}

Members

Namesort descending Modifiers Type Description Overrides
DumperInterface::dump public function Dumps the argument into a specific format. 1