Happyr\DoctrineSpecification\Filter\In::__construct PHP Method

__construct() public method

Make sure the $field has a value equals to $value.
public __construct ( string $field, mixed $value, string $dqlAlias = null )
$field string
$value mixed
$dqlAlias string
    public function __construct($field, $value, $dqlAlias = null)
    {
        $this->field = $field;
        $this->value = $value;
        $this->dqlAlias = $dqlAlias;
    }