X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmiddleware%2Fio%2Fclass_FileIoHandler.php;h=22dff80329e9e95fa96c8cee61eea8403d64e8a7;hp=b6a46857d75f2559cf9f1e566d6f88ca64ce615c;hb=3e1fbf30a631cf1cd64562b69228452c49e0033f;hpb=361e6320e50a8bb1a3ccb675388b8042361669ae diff --git a/inc/classes/middleware/io/class_FileIoHandler.php b/inc/classes/middleware/io/class_FileIoHandler.php index b6a46857..22dff803 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 - 2009 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 getInstance () { return self::$thisInstance; }