Neos\Flow\Persistence\Generic\Query::matching PHP Méthode

matching() public méthode

The constraint used to limit the result set. Returns $this to allow for chaining (fluid interface)
public matching ( Qom\Constraint $constraint ) : Neos\Flow\Persistence\QueryInterface
$constraint Qom\Constraint
Résultat Neos\Flow\Persistence\QueryInterface
    public function matching($constraint)
    {
        $this->constraint = $constraint;
        return $this;
    }