X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=vendor%2Fdoctrine%2Form%2Ftests%2FDoctrine%2FTests%2FMocks%2FStatementMock.php;fp=vendor%2Fdoctrine%2Form%2Ftests%2FDoctrine%2FTests%2FMocks%2FStatementMock.php;h=9b6959ff4bc5903bb9d4b01de601dc89e9d70c75;hb=8b04b2d11798dee4f3e1358e4f43e97a6df851f6;hp=0000000000000000000000000000000000000000;hpb=73568cf05a785a45f94ca3f2351d9e07bf917958;p=zf2.biz%2Fapplication_blanche.git diff --git a/vendor/doctrine/orm/tests/Doctrine/Tests/Mocks/StatementMock.php b/vendor/doctrine/orm/tests/Doctrine/Tests/Mocks/StatementMock.php new file mode 100644 index 0000000..9b6959f --- /dev/null +++ b/vendor/doctrine/orm/tests/Doctrine/Tests/Mocks/StatementMock.php @@ -0,0 +1,25 @@ + + */ +class StatementMock implements \IteratorAggregate, \Doctrine\DBAL\Driver\Statement +{ + public function bindValue($param, $value, $type = null){} + public function bindParam($column, &$variable, $type = null, $length = null){} + public function errorCode(){} + public function errorInfo(){} + public function execute($params = null){} + public function rowCount(){} + public function closeCursor(){} + public function columnCount(){} + public function setFetchMode($fetchStyle, $arg2 = null, $arg3 = null){} + public function fetch($fetchStyle = null){} + public function fetchAll($fetchStyle = null){} + public function fetchColumn($columnIndex = 0){} + public function getIterator(){} +}