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\Indexing;
use AmaTeam\ElasticSearch\API\Annotation\Indexing\Infrastructure\AbstractIntegerOptionAnnotation;
/**
* @Annotation
* @Target("CLASS")
*/
class NumberOfReplicas extends AbstractIntegerOptionAnnotation
{
public function getParameter(): string
return 'number_of_replicas';
}