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;
use AmaTeam\ElasticSearch\Mapping\Type\Parameter\FormatParameter;
/**
* @Annotation
* @Target({"CLASS", "PROPERTY"})
*/
class Format extends AbstractStringParameterAnnotation
{
public function getParameter(): string
return FormatParameter::FRIENDLY_ID;
}