Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / dbal / lib / Doctrine / DBAL / Driver / PDOStatement.php
1 <?php
2 /*
3  *  $Id: Interface.php 3882 2008-02-22 18:11:35Z jwage $
4  *
5  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
6  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
7  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
8  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
9  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
10  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
11  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
12  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
13  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
14  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
15  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16  *
17  * This software consists of voluntary contributions made by many individuals
18  * and is licensed under the MIT license. For more information, see
19  * <http://www.doctrine-project.org>.
20  */
21
22 namespace Doctrine\DBAL\Driver;
23
24 /**
25  * The PDO implementation of the Statement interface.
26  * Used by all PDO-based drivers.
27  *
28  * @since 2.0
29  */
30 class PDOStatement extends \PDOStatement implements Statement
31 {
32     private function __construct() {}
33
34     public function setFetchMode($fetchMode, $arg2 = null, $arg3 = null)
35     {
36         // This thin wrapper is necessary to shield against the weird signature
37         // of PDOStatement::setFetchMode(): even if the second and third
38         // parameters are optional, PHP will not let us remove it from this
39         // declaration.
40         if ($arg2 === null && $arg3 === null) {
41             return parent::setFetchMode($fetchMode);
42         }
43
44         if ($arg3 === null) {
45             return parent::setFetchMode($fetchMode, $arg2);
46         }
47
48         return parent::setFetchMode($fetchMode, $arg2, $arg3);
49     }
50 }