Granada\ORM::_find_many PHP Method

_find_many() protected method

Tell the ORM that you are expecting multiple results from your query, and execute it. Will return an array of instances of the ORM class, or an empty array if no rows were returned.
protected _find_many ( $associative = true ) : array
return array
    protected function _find_many($associative = true)
    {
        $rows = $this->_run();
        return $this->_get_instances($rows);
    }
ORM