Coverage for Doctrine_Schema

Back to coverage report

1 <?php
2 /*
3  *  $Id: Schema.php 2702 2007-10-03 21:43:22Z Jonathan.Wage $
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.com>.
20  */
21 /**
22  * class Doctrine_Schema
23  * Holds information on one to many databases
24  *
25  * @package     Doctrine
26  * @subpackage  Schema
27  * @link        www.phpdoctrine.com
28  * @license     http://www.opensource.org/licenses/lgpl-license.php LGPL
29  * @since       1.0
30  * @version     $Revision: 2702 $
31  * @author      Konsta Vesterinen <kvesteri@cc.hut.fi>
32  */
33 class Doctrine_Schema extends Doctrine_Schema_Object implements Countable, IteratorAggregate
34 {
35     /**
36      * Holds any number of databases contained in the schema
37      * @access private
38      */
39     private $childs;
40
41     /**
42      *
43      * @param Doctrine_Schema_Database database      * @return
44      * @access public
45      */
46     public function addDatabase( Doctrine_Schema_Database $database )
47     {
48          $this->childs[] = $database;
49     }
50
51     /**
52      * Return the childs for this schema
53      *
54      * @return array of Doctrine_Schema_Database
55      *
56      */
57     public function getDatabases() {
58          return $this->childs;
59     }
60     /**
61      *
62      * @return
63      * @access public
64      */
65     public function __toString( )
66     {
67
68     }
69     /**
70      *
71      * @return bool
72      * @access public
73      */
74     public function isValid( )
75     {
76
77     }
78 }