Fixing outdated docblocks for SchemaTool
This commit is contained in:
parent
4d561651a1
commit
0b7feb359d
1 changed files with 6 additions and 1 deletions
|
@ -648,9 +648,11 @@ class SchemaTool
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the database schema of the given classes by comparing the ClassMetadata
|
* Updates the database schema of the given classes by comparing the ClassMetadata
|
||||||
* ins$tableNametances to the current database schema that is inspected.
|
* instances to the current database schema that is inspected. If $saveMode is set
|
||||||
|
* to true the command is executed in the Database, else SQL is returned.
|
||||||
*
|
*
|
||||||
* @param array $classes
|
* @param array $classes
|
||||||
|
* @param boolean $saveMode
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function updateSchema(array $classes, $saveMode=false)
|
public function updateSchema(array $classes, $saveMode=false)
|
||||||
|
@ -666,8 +668,11 @@ class SchemaTool
|
||||||
/**
|
/**
|
||||||
* Gets the sequence of SQL statements that need to be performed in order
|
* Gets the sequence of SQL statements that need to be performed in order
|
||||||
* to bring the given class mappings in-synch with the relational schema.
|
* to bring the given class mappings in-synch with the relational schema.
|
||||||
|
* If $saveMode is set to true the command is executed in the Database,
|
||||||
|
* else SQL is returned.
|
||||||
*
|
*
|
||||||
* @param array $classes The classes to consider.
|
* @param array $classes The classes to consider.
|
||||||
|
* @param boolean $saveMode True for writing to DB, false for SQL string
|
||||||
* @return array The sequence of SQL statements.
|
* @return array The sequence of SQL statements.
|
||||||
*/
|
*/
|
||||||
public function getUpdateSchemaSql(array $classes, $saveMode=false)
|
public function getUpdateSchemaSql(array $classes, $saveMode=false)
|
||||||
|
|
Loading…
Add table
Reference in a new issue