1
0
mirror of synced 2025-01-18 14:31:40 +03:00

Merge pull request #900 from deeky666/fix-connection-mock

Fix connection mock fetchColumn signature
This commit is contained in:
Guilherme Blanco 2014-01-06 12:27:50 -08:00
commit 4e824ac6e1

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;
}