1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Merge pull request #490 from eventhorizonpl/fix_test

fix StatementMock bindParam parameters
This commit is contained in:
Guilherme Blanco 2012-10-22 18:56:35 -07:00
commit e9c7deae4f

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