. */ Doctrine::autoload('Doctrine_Schema_Object'); /** * @package Doctrine * @url http://www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @author Jukka Hassinen * @version $Id$ */ /** * class Doctrine_Schema_Database * Holds information on a database * @package Doctrine * @category Object Relational Mapping * @link www.phpdoctrine.com * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @since 1.0 * @version $Revision$ * @author Konsta Vesterinen */ class Doctrine_Schema_Database extends Doctrine_Schema_Object { protected $definition = array('name' => null, 'type' => null, 'charset' => null, 'description' => null, 'version' => null, 'engine' => null); private $childs = array(); /** * * @return * @access public */ public function __clone( ) { } /** * * @return * @access public */ public function __toString( ) { } /** * * @return bool * @access public */ public function isValid( ) { } /** * * @param Doctrine_Schema_Table table * @return Doctrine_Schema_Table * @access public */ public function addTable( $table = null ) { $this->childs[] = $table; } /** * * @return array of Doctrine_Schema_Table * */ public function getTables() { return $this->childs; } }