]> git.mxchange.org Git - install.git/commitdiff
selfInstance is better
authorRoland Häder <roland@mxchange.org>
Tue, 8 Nov 2011 07:49:27 +0000 (07:49 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 8 Nov 2011 07:49:27 +0000 (07:49 +0000)
application/install/class_ApplicationHelper.php

index 58c7e032442b69b82d89b7a32581b0fd4a172cd8..3e48f7522fa04558f78b72d578e7d6340aca3198 100644 (file)
@@ -63,7 +63,7 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
        /**
         * An instance of this class
         */
-       private static $thisInstance = null;
+       private static $selfInstance = null;
 
        /**
         * Protected constructor
@@ -78,16 +78,16 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication
        /**
         * Getter for an instance of this class
         *
-        * @return      $thisInstance           An instance of this class
+        * @return      $selfInstance   An instance of this class
         */
        public static final function getInstance () {
                // Is the instance there?
-               if (is_null(self::$thisInstance)) {
-                       self::$thisInstance = new ApplicationHelper();
+               if (is_null(self::$selfInstance)) {
+                       self::$selfInstance = new ApplicationHelper();
                } // END - if
 
                // Return the instance
-               return self::$thisInstance;
+               return self::$selfInstance;
        }
 
        /**