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

mod() public method

Specify $mod criteria for the current field.
See also: Expr::mod()
See also: http://docs.mongodb.org/manual/reference/operator/mod/
public mod ( float | integer $divisor, float | integer $remainder )
$divisor float | integer
$remainder float | integer
    public function mod($divisor, $remainder = 0)
    {
        $this->query->mod($divisor, $remainder);
        return $this;
    }