X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fdatabase%2Fclass_;h=7c030cf8ad99f5b109a0ffa7bd229447e37f6d1f;hb=546959d365de1c4a499502b4d2f08ce06be69269;hp=e80a4b8a97b376cd74cbcea97655a3aa7f372d7b;hpb=0cd57c3885f00ad77fc599e53ed2f2d5e7ac267f;p=core.git diff --git a/inc/classes/main/database/class_ b/inc/classes/main/database/class_ index e80a4b8a..7c030cf8 100644 --- a/inc/classes/main/database/class_ +++ b/inc/classes/main/database/class_ @@ -2,10 +2,10 @@ /** * * - * @see DatabaseFrontendInterface - An interface for database frontends (front-end to the application) + * @see DatabaseBackendInterface - An interface for database backends * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -22,7 +22,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class extends BaseDatabaseFrontend { +class extends BaseDatabaseBackend implements DatabaseBackendInterface { /** * Protected constructor * @@ -31,10 +31,6 @@ class extends BaseDatabaseFrontend { protected function __construct($class = __CLASS__) { // Call parent constructor parent::__construct($class); - - // Clean up a little - $this->removeNumberFormaters(); - $this->removeSystemArray(); } }