X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmiddleware%2Fio%2Fclass_FileIoHandler.php;h=70afeefe664bb7dc5590b4a5becee5bc32350528;hp=6ec6f97a60d443d91d7cd71f722554c7b145d523;hb=768cc231b262ebeaa5aec373d9b7d97cc6b6ac95;hpb=0cd57c3885f00ad77fc599e53ed2f2d5e7ac267f diff --git a/inc/classes/middleware/io/class_FileIoHandler.php b/inc/classes/middleware/io/class_FileIoHandler.php index 6ec6f97a..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, 2009 Core Developer Team + * @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; }