DbConnection: Cast a queries count to integer forcefully
This commit is contained in:
parent
a3d5cfc28a
commit
093857641a
|
@ -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());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue