You are here

DumperInterface.php in Geocoder 7.2

File

src/Plugin/Geocoder/DumperInterface.php
View source
<?php

/**
 * @file
 * Contains \Drupal\geocoder\Plugin\Geocoder\DumperInterface.
 */
namespace Drupal\geocoder\Plugin\Geocoder;

use Drupal\geocoder\Plugin\GeocoderPluginInterface;
use Geocoder\Model\Address;
interface DumperInterface extends GeocoderPluginInterface {

  /**
   * Dump the argument into a specific format.
   */
  public function dump(Address $address);

}

Interfaces

Namesort descending Description
DumperInterface