1
0
mirror of synced 2024-12-14 23:26:04 +03:00
doctrine2/tests/Doctrine/Tests/Mocks/StatementMock.php
2012-12-14 18:55:28 +00:00

101 lines
1.4 KiB
PHP

<?php
namespace Doctrine\Tests\Mocks;
/**
* This class is a mock of the Statement interface.
*
* @author Alexander <iam.asm89@gmail.com>
*/
class StatementMock implements \IteratorAggregate, \Doctrine\DBAL\Driver\Statement
{
/**
* {@inheritdoc}
*/
public function bindValue($param, $value, $type = null)
{
}
/**
* {@inheritdoc}
*/
public function bindParam($column, &$variable, $type = null, $length = null)
{
}
/**
* {@inheritdoc}
*/
public function errorCode()
{
}
/**
* {@inheritdoc}
*/
public function errorInfo(){}
/**
* {@inheritdoc}
*/
public function execute($params = null)
{
}
/**
* {@inheritdoc}
*/
public function rowCount()
{
}
/**
* {@inheritdoc}
*/
public function closeCursor()
{
}
/**
* {@inheritdoc}
*/
public function columnCount()
{
}
/**
* {@inheritdoc}
*/
public function setFetchMode($fetchStyle, $arg2 = null, $arg3 = null)
{
}
/**
* {@inheritdoc}
*/
public function fetch($fetchStyle = null)
{
}
/**
* {@inheritdoc}
*/
public function fetchAll($fetchStyle = null)
{
}
/**
* {@inheritdoc}
*/
public function fetchColumn($columnIndex = 0)
{
}
/**
* {@inheritdoc}
*/
public function getIterator()
{
}
}