And same thing here. As you can see it is very easy to rename files and still the...
authorRoland Haeder <roland@mxchange.org>
Tue, 4 Feb 2014 19:44:07 +0000 (20:44 +0100)
committerRoland Haeder <roland@mxchange.org>
Tue, 4 Feb 2014 19:44:07 +0000 (20:44 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/interfaces/database/backend/class_DatabaseBackend.php
inc/classes/interfaces/database/class_FrameworkDatabase.php [new file with mode: 0644]
inc/classes/interfaces/database/class_FrameworkDatabaseInterface.php [deleted file]
inc/classes/interfaces/database/middleware/class_DatabaseConnector.php

index 30a2182bd905849144a4c2f0d40e2540dd3cf5bd..ca679722092f2729124ac5d431c2db479780559b 100644 (file)
@@ -25,7 +25,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface DatabaseBackend extends FrameworkDatabaseInterface {
+interface DatabaseBackend extends FrameworkDatabase {
        /**
         * Makes sure that the database connection is up and alive
         *
        /**
         * Makes sure that the database connection is up and alive
         *
diff --git a/inc/classes/interfaces/database/class_FrameworkDatabase.php b/inc/classes/interfaces/database/class_FrameworkDatabase.php
new file mode 100644 (file)
index 0000000..e83b4df
--- /dev/null
@@ -0,0 +1,28 @@
+<?php
+/**
+ * The general interface for all other database interfaces
+ *
+ * @author             Roland Haeder <webmaster@shipsimu.org>
+ * @version            0.0.0
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
+ * @license            GNU GPL 3.0 or any newer version
+ * @link               http://www.shipsimu.org
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+interface FrameworkDatabase extends FrameworkInterface {
+}
+
+// [EOF]
+?>
diff --git a/inc/classes/interfaces/database/class_FrameworkDatabaseInterface.php b/inc/classes/interfaces/database/class_FrameworkDatabaseInterface.php
deleted file mode 100644 (file)
index e1098b8..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * The general interface for all other database interfaces
- *
- * @author             Roland Haeder <webmaster@shipsimu.org>
- * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 Core Developer Team
- * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.shipsimu.org
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-interface FrameworkDatabaseInterface extends FrameworkInterface {
-}
-
-// [EOF]
-?>
index 0b738d2ea5c2637c23be0b9240d21097283b99bb..ff62369d132c4548b3c49ad195d518f633aeb35f 100644 (file)
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface DatabaseConnector extends FrameworkDatabaseInterface {
+interface DatabaseConnector extends FrameworkDatabase {
 }
 
 // [EOF]
 }
 
 // [EOF]