fixing fromElasticaObjects method to return array as stated

This commit is contained in:
Jay Severson 2011-04-19 17:25:53 -07:00
parent d64e908988
commit 8ae119e20b

View file

@ -66,7 +66,8 @@ class DoctrineMapper implements MapperInterface
->field($this->identifier)->in($ids) ->field($this->identifier)->in($ids)
->hydrate($this->options['hydrate']) ->hydrate($this->options['hydrate'])
->getQuery() ->getQuery()
->execute(); ->execute()
->toArray();
} }
} }