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\API\Annotation\Mapping\Infrastructure\ViewAwareAnnotationInterface;
/**
* @Annotation
* @Target("PROPERTY")
*/
class IgnoredProperty implements ViewAwareAnnotationInterface
{
* @var array<string>
public $views;
* @return string[]
public function getViews(): array
return $this->views;
}