public function get(?int
$limit = null, int
$offset = 0, bool
$reset = true
) { if ($limit !== null
) { $this->
limit($limit,
$offset);
} $result =
$this->testMode
?
$this->
getCompiledSelect($reset) :
$this->db->
query($this->
compileSelect(),
$this->binds, false
);
if ($reset === true
) { $this->
resetSelect();
// Clear our binds so we don't eat up memory
$this->binds =
[];
} return $result;
}