From: Roland Haeder Date: Tue, 4 Feb 2014 19:44:07 +0000 (+0100) Subject: And same thing here. As you can see it is very easy to rename files and still the... X-Git-Url: https://git.mxchange.org/?p=core.git;a=commitdiff_plain;h=eeb7deedc9b75f01f96cd90a13b6ed2ee95f61ed And same thing here. As you can see it is very easy to rename files and still the history is intact. Signed-off-by: Roland Häder --- diff --git a/inc/classes/interfaces/database/backend/class_DatabaseBackend.php b/inc/classes/interfaces/database/backend/class_DatabaseBackend.php index 30a2182b..ca679722 100644 --- a/inc/classes/interfaces/database/backend/class_DatabaseBackend.php +++ b/inc/classes/interfaces/database/backend/class_DatabaseBackend.php @@ -25,7 +25,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -interface DatabaseBackend extends FrameworkDatabaseInterface { +interface DatabaseBackend extends FrameworkDatabase { /** * 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 index 00000000..e83b4df9 --- /dev/null +++ b/inc/classes/interfaces/database/class_FrameworkDatabase.php @@ -0,0 +1,28 @@ + + * @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 . + */ +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 index e1098b89..00000000 --- a/inc/classes/interfaces/database/class_FrameworkDatabaseInterface.php +++ /dev/null @@ -1,28 +0,0 @@ - - * @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 . - */ -interface FrameworkDatabaseInterface extends FrameworkInterface { -} - -// [EOF] -?> diff --git a/inc/classes/interfaces/database/middleware/class_DatabaseConnector.php b/inc/classes/interfaces/database/middleware/class_DatabaseConnector.php index 0b738d2e..ff62369d 100644 --- a/inc/classes/interfaces/database/middleware/class_DatabaseConnector.php +++ b/inc/classes/interfaces/database/middleware/class_DatabaseConnector.php @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -interface DatabaseConnector extends FrameworkDatabaseInterface { +interface DatabaseConnector extends FrameworkDatabase { } // [EOF]