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\Parameter;
use AmaTeam\ElasticSearch\Mapping\Type\Parameter\Infrastructure\AbstractStringParameter;
class CopyToParameter extends AbstractStringParameter
{
const ID = 'copy_to';
const FRIENDLY_ID = 'copyTo';
public function getId(): string
return self::ID;
}
public function getFriendlyId(): string
return self::FRIENDLY_ID;