Some updates:
[core.git] / framework / main / classes / database / class_
1 <?php
2 /**
3  * 
4  *
5  * @see                 DatabaseBackendInterface - An interface for database backends
6  * @author              Roland Haeder <webmaster@ship-simu.org>
7  * @version             0.0.0
8 <<<<<<< HEAD:framework/main/classes/database/class_
9  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
10 =======
11  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2016 Core Developer Team
12 >>>>>>> Some updates::inc/main/classes/database/class_
13  * @license             GNU GPL 3.0 or any newer version
14  * @link                http://www.ship-simu.org
15  *
16  * This program is free software: you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation, either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program. If not, see <http://www.gnu.org/licenses/>.
28  */
29 class  extends BaseDatabaseBackend implements DatabaseBackendInterface {
30         /**
31          * Protected constructor
32          *
33          * @return      void
34          */
35         protected function __construct($class = __CLASS__) {
36                 // Call parent constructor
37                 parent::__construct($class);
38         }
39
40 }