Fix class name after merging migrations
authorChuck Hagenbuch <chuck@horde.org>
Sun, 13 Dec 2009 17:12:24 +0000 (12:12 -0500)
committerChuck Hagenbuch <chuck@horde.org>
Sun, 13 Dec 2009 17:12:24 +0000 (12:12 -0500)
framework/Db/lib/Horde/Db/Migration/Base.php

index 72cea4c..8e5ad32 100644 (file)
@@ -37,7 +37,7 @@ class Horde_Db_Migration_Base
 
     /**
      * Database connection adapter
-     * @var Horde_Db_Adapter_Abstract
+     * @var Horde_Db_Adapter_Base
      */
     protected $_connection;
 
@@ -48,7 +48,7 @@ class Horde_Db_Migration_Base
 
     /**
      */
-    public function __construct(Horde_Db_Adapter_Abstract $connection, $version = null)
+    public function __construct(Horde_Db_Adapter_Base $connection, $version = null)
     {
         $this->_connection = $connection;
         $this->version = $version;