~patrix-sbs/oraculum/git

« back to all changes in this revision

Viewing changes to library/components/doctrine/lib/Doctrine/Connection/Mock.php

  • Committer: Patrick Kaminski
  • Date: 2009-09-02 02:33:07 UTC
  • Revision ID: git-v1:943803254fca67bfb4c0374422b1b836b14dc518
Tags: v0.1a
Sending Oraculum Framework v0.1 alpha

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/*
 
3
 *  $Id: Mock.php 4252 2008-04-19 07:37:53Z 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 LGPL. For more information, see
 
19
 * <http://www.phpdoctrine.org>.
 
20
 */
 
21
 
 
22
/**
 
23
 * Doctrine_Connection_Mysql
 
24
 *
 
25
 * @package     Doctrine
 
26
 * @subpackage  Connection
 
27
 * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
 
28
 * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
 
29
 * @author      Lukas Smith <smith@pooteeweet.org> (PEAR MDB2 library)
 
30
 * @version     $Revision: 4252 $
 
31
 * @link        www.phpdoctrine.org
 
32
 * @since       1.0
 
33
 */
 
34
class Doctrine_Connection_Mock extends Doctrine_Connection_Common
 
35
{
 
36
    /**
 
37
     * @var string $driverName                  the name of this connection driver
 
38
     */
 
39
    protected $driverName = 'Mock';
 
40
 
 
41
    /**
 
42
     * the constructor
 
43
     *
 
44
     * @param Doctrine_Manager $manager
 
45
     * @param PDO|Doctrine_Adapter $adapter     database handler
 
46
     */
 
47
    public function __construct(Doctrine_Manager $manager, $adapter)
 
48
    {
 
49
 
 
50
    }
 
51
}
 
 
b'\\ No newline at end of file'