for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace AmaTeam\ElasticSearch\Indexing;
use AmaTeam\ElasticSearch\API\Indexing\Validation\ContextInterface;
use AmaTeam\ElasticSearch\API\Indexing\ValidatorInterface;
use AmaTeam\ElasticSearch\API\IndexingInterface;
use Symfony\Component\Validator\ConstraintViolationList;
use Symfony\Component\Validator\ConstraintViolationListInterface;
class Validator implements ValidatorInterface
{
public function validate(
IndexingInterface $indexing,
ContextInterface $context = null
): ConstraintViolationListInterface {
// TODO: Implement validate() method.
return new ConstraintViolationList();
}