1
0
mirror of synced 2025-01-31 04:21:44 +03:00

fixed E_STRICT issue

This commit is contained in:
zYne 2007-06-14 15:01:58 +00:00
parent 1b979ff962
commit 2d088df162

View File

@ -251,10 +251,15 @@ class Doctrine_Export_Frontbase extends Doctrine_Export
*
* @param string $seqName name of the sequence to be created
* @param string $start start value of the sequence; default is 1
* @return mixed MDB2_OK on success, a MDB2 error on failure
* @access public
* @param array $options An associative array of table options:
* array(
* 'comment' => 'Foo',
* 'charset' => 'utf8',
* 'collate' => 'utf8_unicode_ci',
* );
* @return void
*/
public function createSequence($seqName, $start = 1)
public function createSequence($sequenceName, $start = 1, array $options = array())
{
$sequenceName = $this->conn->quoteIdentifier($this->conn->getSequenceName($seqName), true);
$seqcolName = $this->conn->quoteIdentifier($this->conn->getAttribute(Doctrine::ATTR_SEQCOL_NAME), true);