1
0
mirror of synced 2025-01-29 19:41:45 +03:00

fix StatementMock bindParam parameters

This commit is contained in:
Michal Piotrowski 2012-10-23 00:09:38 +02:00
parent 9d0b254407
commit f6cf8f2f0c

View File

@ -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){}