E_STRICT fix
This commit is contained in:
parent
20d91125a3
commit
3596642de4
@ -152,7 +152,7 @@ class Doctrine_Export extends Doctrine_Connection_Module {
|
||||
* @param string $start start value of the sequence; default is 1
|
||||
* @return void
|
||||
*/
|
||||
public function createSequence($seqName, $start = 1) {
|
||||
public function createSequence($seqName, $seqcolName, $start = 1) {
|
||||
throw new Doctrine_Export_Exception('Create sequence not supported by this driver.');
|
||||
}
|
||||
|
||||
|
@ -222,7 +222,7 @@ class Doctrine_Export_Mysql extends Doctrine_Export {
|
||||
* actually perform them otherwise.
|
||||
* @return boolean
|
||||
*/
|
||||
public function alterTable($name, $changes, $check) {
|
||||
public function alterTable($name, array $changes, $check) {
|
||||
if( ! $name)
|
||||
throw new Doctrine_Export_Mysql_Exception('no valid table name specified');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user