1
0
mirror of synced 2025-02-20 22:23:14 +03:00

fix connection mock fetchColumn signature

This commit is contained in:
Steve Müller 2014-01-06 21:24:01 +01:00
parent b65d9e6c83
commit 5f93c83059

View File

@ -83,7 +83,7 @@ class ConnectionMock extends \Doctrine\DBAL\Connection
/**
* {@inheritdoc}
*/
public function fetchColumn($statement, array $params = array(), $colnum = 0)
public function fetchColumn($statement, array $params = array(), $colnum = 0, array $types = array())
{
return $this->_fetchOneResult;
}