X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fregistry%2Fclass_Registry.php;h=243c2b49f5ad44488ee5792dae58a143371d54b3;hp=625e797139f3059ab126f55e90191545e4f7f24e;hb=ca8867a06a585747a6323a58a860bf483d527577;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae diff --git a/inc/classes/main/registry/class_Registry.php b/inc/classes/main/registry/class_Registry.php index 625e7971..243c2b49 100644 --- a/inc/classes/main/registry/class_Registry.php +++ b/inc/classes/main/registry/class_Registry.php @@ -25,7 +25,7 @@ class Registry extends BaseFrameworkSystem implements Register { /** * Instance of this class */ - private static $selfInstance = null; + private static $registryInstance = null; /** * Wether the registry is initialized @@ -52,32 +52,37 @@ class Registry extends BaseFrameworkSystem implements Register { } /** - * Singleton getter for self instance + * Singleton getter for self instance. This class has no factory pattern + * because here is no need for special parameters. * - * @return $selfInstance Instance of this class + * @return $registryInstance Instance of this class */ public final static function getRegistry () { // Is an instance there? - if (is_null(self::$selfInstance)) { + if (is_null(self::$registryInstance)) { // Not yet, so create one - self::$selfInstance = new Registry(); + self::$registryInstance = new Registry(); } // Return the instance - return self::$selfInstance; + return self::$registryInstance; } /** - * Checks or sets wether the registry has been initialized. This had only be done once + * Checks or sets wether the registry has been initialized. This had only + * be done once. * * @param $initialized Wether the registry is initialized * @return $initialized Wether the registry is initialized */ public final static function isInitialized ($initialized = null) { + // If no parameter (null by default) is provided we want to get the + // parameter. If set to e.g. "OK" then the registry is set to + // "initialized". if (is_null($initialized)) { // Get status if initialized return self::$initialized; - } elseif (!is_null($initialized)) { + } else { // Registry is initialized! self::$initialized = true; }