X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmiddleware%2Fio%2Fclass_FileIoHandler.php;h=70afeefe664bb7dc5590b4a5becee5bc32350528;hp=db5797907f85a8dfb43ebcbfc649ebbb5dd0abc0;hb=768cc231b262ebeaa5aec373d9b7d97cc6b6ac95;hpb=c6d73b0e3246efc824cb98338d4be7ee5bc9f308 diff --git a/inc/classes/middleware/io/class_FileIoHandler.php b/inc/classes/middleware/io/class_FileIoHandler.php index db579790..70afeefe 100644 --- a/inc/classes/middleware/io/class_FileIoHandler.php +++ b/inc/classes/middleware/io/class_FileIoHandler.php @@ -5,7 +5,7 @@ * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -26,17 +26,17 @@ class FileIoHandler extends BaseMiddleware { /** * The *real* file input class we shall use for reading data */ - private $inputStream = null; + private $inputStream = NULL; /** * The *real* file output class we shall use for reading data */ - private $outputStream = null; + private $outputStream = NULL; /** * An instance of this class */ - private static $thisInstance = null; + private static $thisInstance = NULL; /** * Protected constructor @@ -57,7 +57,7 @@ class FileIoHandler extends BaseMiddleware { * * @return $ioInstance A prepared instance of FilIOHandler */ - public final static function createFileIoHandler () { + public static final function createFileIoHandler () { // Get instance $ioHandler = new FileIoHandler(); @@ -74,7 +74,7 @@ class FileIoHandler extends BaseMiddleware { * * @return $thisInstance An instance of this class */ - public final static function getInstance () { + public static final function getSelfInstance () { return self::$thisInstance; }