LMongo\Query\Builder::norWhereExists PHP Метод

norWhereExists() публичный Метод

Add an "$exists element operation" clause to logical $nor operation.
public norWhereExists ( string $column, boolean $exists = true ) : LMongo\Query\Builder
$column string
$exists boolean
Результат LMongo\Query\Builder
    public function norWhereExists($column, $exists = true)
    {
        return $this->where($column, array('$exists' => $exists), '$nor');
    }
Builder