76e0e745bd2c13a6f71dbf90ffceb29571579251
[core.git] / framework / main / classes / registry / class_
1 <?php
2 // Own namespace
3 namespace CoreFramework\Registry\!!!;
4
5 /**
6  * A ??? registry
7  *
8  * @author              Roland Haeder <webmaster@ship-simu.org>
9  * @version             0.0.0
10  * @copyright   Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
11  * @license             GNU GPL 3.0 or any newer version
12  * @link                http://www.ship-simu.org
13  *
14  * This program is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU General Public License as published by
16  * the Free Software Foundation, either version 3 of the License, or
17  * (at your option) any later version.
18  *
19  * This program is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU General Public License for more details.
23  *
24  * You should have received a copy of the GNU General Public License
25  * along with this program. If not, see <http://www.gnu.org/licenses/>.
26  */
27 class ???Registry extends BaseRegistry implements Register {
28         /**
29          * Instance of this class
30          */
31         private static $registryInstance = null;
32
33         /**
34          * Protected constructor
35          *
36          * @return      void
37          */
38         protected function __construct () {
39                 // Call parent constructor
40                 parent::__construct(__CLASS__);
41         }
42
43         /**
44          * Singleton getter for self instance. This class has no factory pattern
45          * because here is no need for special parameters.
46          *
47          * @return      $registryInstance       Instance of this class
48          */
49         public final static function getRegistry () {
50                 // Is an instance there?
51                 if (is_null(self::$registryInstance)) {
52                         // Not yet, so create one
53                         self::$registryInstance = new ???Registry();
54                 } // END - if
55
56                 // Return the instance
57                 return self::$registryInstance;
58         }
59
60 }