DbConnection: Cast a queries count to integer forcefully

This commit is contained in:
Johannes Meyer 2015-05-20 09:30:23 +02:00
parent a3d5cfc28a
commit 093857641a
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ class DbConnection implements Selectable, Extensible, Updatable, Reducible
*/
public function count(DbQuery $query)
{
return $this->dbAdapter->fetchOne($query->getCountQuery());
return (int) $this->dbAdapter->fetchOne($query->getCountQuery());
}
/**