LMongo\Query\Builder::norWhereMod PHP Method

norWhereMod() public method

Add an "$mod element operation" clause to logical $nor operation.
public norWhereMod ( string $column, integer $divisor, integer $remainder ) : LMongo\Query\Builder
$column string
$divisor integer
$remainder integer
return LMongo\Query\Builder
    public function norWhereMod($column, $divisor, $remainder)
    {
        return $this->where($column, array('$mod' => array($divisor, $remainder)), '$nor');
    }
Builder