Bluz\Db\Table::fetchAll PHP Method

fetchAll() public static method

Fetch all rows from table Be carefully with this method, can be very slow
public static fetchAll ( ) : array
return array of rows results in FETCH_CLASS mode
    public static function fetchAll()
    {
        $self = static::getInstance();
        return DbProxy::fetchObjects($self->select, [], $self->rowClass);
    }