LMongo\Query\Builder::get PHP Méthode

get() public méthode

Execute the query.
public get ( array $columns = [] ) : LMongo\Query\Cursor
$columns array
Résultat LMongo\Query\Cursor
    public function get($columns = array())
    {
        if (!is_null($this->cacheMinutes)) {
            return $this->getCached($columns);
        }
        return $this->getFresh($columns, true);
    }
Builder