added getDatabases and addDatabase methods
This commit is contained in:
parent
52aa5845b6
commit
a94c714af1
1 changed files with 12 additions and 3 deletions
|
@ -46,10 +46,19 @@ class Doctrine_Schema extends Doctrine_Schema_Object implements Countable, Itera
|
||||||
* @param Doctrine_Schema_Database database * @return
|
* @param Doctrine_Schema_Database database * @return
|
||||||
* @access public
|
* @access public
|
||||||
*/
|
*/
|
||||||
public function addDatabase( $database ) {
|
public function addDatabase( Doctrine_Schema_Database $database ) {
|
||||||
|
$this->childs[] = $database;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the childs for this schema
|
||||||
|
*
|
||||||
|
* @return array of Doctrine_Schema_Database
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function getDatabases(){
|
||||||
|
return $this->childs;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @return
|
* @return
|
||||||
|
|
Loading…
Add table
Reference in a new issue