MAPG-193 fix PersistentDataManager::selectMultipleFromDb

This commit is contained in:
Bence Pőcze 2020-07-05 15:15:29 +02:00
parent b58137acc9
commit 45869321ac
Signed by: bence
GPG Key ID: AA52B11A3269D1C1

View File

@ -27,8 +27,9 @@ class PersistentDataManager
public function selectMultipleFromDb(Select $select, string $type, bool $withRelations = false): Generator
{
$select = $this->createSelect($select, $type, $withRelations);
$result = $select->execute();
while ($data = $select->execute()->fetch(IResultSet::FETCH_ASSOC)) {
while ($data = $result->fetch(IResultSet::FETCH_ASSOC)) {
$model = new $type();
$this->fillWithData($data, $model);