Text.php in Geocoder 8.3
Same filename and directory in other branches
File
modules/geocoder_field/src/Plugin/Geocoder/Preprocessor/Text.phpView source
<?php
namespace Drupal\geocoder_field\Plugin\Geocoder\Preprocessor;
use Drupal\geocoder_field\PreprocessorBase;
/**
* Provides a geocoder preprocessor plugin for text fields.
*
* @todo [cc]: What is the reason for this plugin? It returns exactly what it
* receives.
*
* @GeocoderPreprocessor(
* id = "text",
* name = "Text",
* field_types = {
* "string",
* "string_long",
* "text",
* "text_long"
* }
* )
*/
class Text extends PreprocessorBase {
}