geolocation-8.x-3.x-dev/src/GeocoderCountryFormattingBase.php
src/GeocoderCountryFormattingBase.php
<?php
namespace Drupal\geolocation;
use Drupal\Core\Plugin\PluginBase;
/**
* Defines an interface for geolocation google geocoder country plugins.
*/
abstract class GeocoderCountryFormattingBase extends PluginBase implements GeocoderCountryFormattingInterface {
/**
* {@inheritdoc}
*/
public function format(array $atomics): ?array {
return [
'organization' => '',
'addressLine1' => '',
'addressLine2' => '',
'locality' => '',
'postalCode' => '',
'administrativeArea' => '',
'countryCode' => '',
];
}
}
