Granada\ORM::_find_many PHP 메소드

_find_many() 보호된 메소드

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
리턴 array
    protected function _find_many($associative = true)
    {
        $rows = $this->_run();
        return $this->_get_instances($rows);
    }
ORM