Commit 3596642d authored by zYne's avatar zYne

E_STRICT fix

parent 20d91125
...@@ -152,7 +152,7 @@ class Doctrine_Export extends Doctrine_Connection_Module { ...@@ -152,7 +152,7 @@ class Doctrine_Export extends Doctrine_Connection_Module {
* @param string $start start value of the sequence; default is 1 * @param string $start start value of the sequence; default is 1
* @return void * @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.'); throw new Doctrine_Export_Exception('Create sequence not supported by this driver.');
} }
......
...@@ -222,7 +222,7 @@ class Doctrine_Export_Mysql extends Doctrine_Export { ...@@ -222,7 +222,7 @@ class Doctrine_Export_Mysql extends Doctrine_Export {
* actually perform them otherwise. * actually perform them otherwise.
* @return boolean * @return boolean
*/ */
public function alterTable($name, $changes, $check) { public function alterTable($name, array $changes, $check) {
if( ! $name) if( ! $name)
throw new Doctrine_Export_Mysql_Exception('no valid table name specified'); throw new Doctrine_Export_Mysql_Exception('no valid table name specified');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment