/** * @return Array */ function &SelectReadsRecords() { $readsRecords = array(); if ($this->_dbConnection->Execute($this->_commandCreator->SelectReadsRecords($this->Account->Id))) { while (false !== ($row = $this->_dbConnection->GetNextRecord())) { $readsRecords[$row->uid] = ''; } } return $readsRecords; }