Doctrine\MongoDB\Aggregation\Stage\Match::text PHP Method

text() public method

The $language option may be set with {@link Builder::language()}. You can only use this in the first $match stage of a pipeline.
See also: Expr::text()
See also: http://docs.mongodb.org/master/reference/operator/query/text/
public text ( string $search )
$search string
    public function text($search)
    {
        $this->query->text($search);
        return $this;
    }