X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmiddleware%2Fio%2Fclass_FileIoHandler.php;h=93c40c9381851ab4f9ebc4d22cfe5a86811f6c25;hp=70afeefe664bb7dc5590b4a5becee5bc32350528;hb=9114236c06107fd4d9c20f7e8ebabf16e7383d45;hpb=768cc231b262ebeaa5aec373d9b7d97cc6b6ac95 diff --git a/inc/classes/middleware/io/class_FileIoHandler.php b/inc/classes/middleware/io/class_FileIoHandler.php index 70afeefe..93c40c93 100644 --- a/inc/classes/middleware/io/class_FileIoHandler.php +++ b/inc/classes/middleware/io/class_FileIoHandler.php @@ -36,7 +36,7 @@ class FileIoHandler extends BaseMiddleware { /** * An instance of this class */ - private static $thisInstance = NULL; + private static $selfInstance = NULL; /** * Protected constructor @@ -48,7 +48,7 @@ class FileIoHandler extends BaseMiddleware { parent::__construct(__CLASS__); // Set own instance - self::$thisInstance = $this; + self::$selfInstance = $this; } /** @@ -72,10 +72,10 @@ class FileIoHandler extends BaseMiddleware { /** * 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 getSelfInstance () { - return self::$thisInstance; + return self::$selfInstance; } /**