for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AmaTeam\ElasticSearch\Mapping\Type;
use AmaTeam\ElasticSearch\Mapping\Parameter\IgnoreMalformedParameter;
class GeoPointType extends AbstractType
{
const ID = 'geo_point';
const FRIENDLY_ID = 'geoPoint';
public function getId(): string
return self::ID;
}
/**
* @inheritDoc
*/
public function getParameters(): array
return [IgnoreMalformedParameter::getInstance()];