From f6cf8f2f0cc87948dc686ebbfede6e9146a03c77 Mon Sep 17 00:00:00 2001 From: Michal Piotrowski Date: Tue, 23 Oct 2012 00:09:38 +0200 Subject: [PATCH] fix StatementMock bindParam parameters --- tests/Doctrine/Tests/Mocks/StatementMock.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Doctrine/Tests/Mocks/StatementMock.php b/tests/Doctrine/Tests/Mocks/StatementMock.php index 2113cc48b..9b6959ff4 100644 --- a/tests/Doctrine/Tests/Mocks/StatementMock.php +++ b/tests/Doctrine/Tests/Mocks/StatementMock.php @@ -10,7 +10,7 @@ namespace Doctrine\Tests\Mocks; class StatementMock implements \IteratorAggregate, \Doctrine\DBAL\Driver\Statement { public function bindValue($param, $value, $type = null){} - public function bindParam($column, &$variable, $type = null){} + public function bindParam($column, &$variable, $type = null, $length = null){} public function errorCode(){} public function errorInfo(){} public function execute($params = null){}