From: Jan Schneider Date: Thu, 23 Dec 2010 16:19:43 +0000 (+0100) Subject: No need to return anything. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ff44f9292bd79f340d8aec261f74740fcc751766;p=horde.git No need to return anything. --- diff --git a/framework/Db/lib/Horde/Db/Migration/Migrator.php b/framework/Db/lib/Horde/Db/Migration/Migrator.php index 30bf5cb21..ce25e99bb 100644 --- a/framework/Db/lib/Horde/Db/Migration/Migrator.php +++ b/framework/Db/lib/Horde/Db/Migration/Migrator.php @@ -241,7 +241,7 @@ class Horde_Db_Migration_Migrator $schemaTable = $this->_connection->createTable($this->_schemaTableName, array('primaryKey' => false)); $schemaTable->column('version', 'integer'); $schemaTable->end(); - return $this->_connection->insert('INSERT INTO ' . $this->_schemaTableName . ' (version) VALUES (0)'); + $this->_connection->insert('INSERT INTO ' . $this->_schemaTableName . ' (version) VALUES (0)'); } catch (Exception $e) {} }