You are here

GeocoderCountryFormatting.php in Geolocation Field 8.2

Same filename and directory in other branches
  1. 8.3 src/Annotation/GeocoderCountryFormatting.php

File

src/Annotation/GeocoderCountryFormatting.php
View source
<?php

namespace Drupal\geolocation\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a GeocoderCountryFormatting annotation object.
 *
 * @see \Drupal\geolocation\GeocoderCountryFormattingManager
 * @see plugin_api
 *
 * @Annotation
 */
class GeocoderCountryFormatting extends Plugin {

  /**
   * The ID.
   *
   * @var string
   */
  public $id;

  /**
   * The country code.
   *
   * @var string
   */
  public $countryCode;

  /**
   * The geocoder ID.
   *
   * @var string
   */
  public $geocoder;

}

Classes

Namesort descending Description
GeocoderCountryFormatting Defines a GeocoderCountryFormatting annotation object.