for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace AmaTeam\ElasticSearch\API\Annotation\Mapping\Parameter;
use AmaTeam\ElasticSearch\API\Annotation\Mapping\Parameter\Infrastructure\AbstractBooleanParameterAnnotation;
use AmaTeam\ElasticSearch\Mapping\Type\Parameter\StoreParameter;
class Store extends AbstractBooleanParameterAnnotation
{
public function getParameter(): string
return StoreParameter::FRIENDLY_ID;
}