X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=framework%2Fmain%2Finterfaces%2Fio%2Ffile%2Fhandler%2Fclass_IoHandler.php;h=cf3f4adbccd9201882bc2568b08f83c88a3a50ee;hb=fcf4d2298dd734a93fe99aede7d374e80d39f9ec;hp=6f27ae070a37b23ba05409d6e018d3b997443a8d;hpb=f57dd51863ec9baacba447d76b46d5c709b9b02e;p=core.git diff --git a/framework/main/interfaces/io/file/handler/class_IoHandler.php b/framework/main/interfaces/io/file/handler/class_IoHandler.php index 6f27ae07..cf3f4adb 100644 --- a/framework/main/interfaces/io/file/handler/class_IoHandler.php +++ b/framework/main/interfaces/io/file/handler/class_IoHandler.php @@ -15,7 +15,7 @@ use \SplFileInfo; * * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2019 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -36,32 +36,32 @@ interface IoHandler extends FileInputStreamer, FileOutputStreamer { /** * Setter for the *real* file input instance * - * @param $inputStream The *real* file-input class + * @param $inputStreamerInstance The *real* file-input class * @return void */ - function setInputStream (FileInputStreamer $inputStream); + function setInputStreamerInstance (FileInputStreamer $inputStreamerInstance); /** * Getter for the *real* file input instance * * @return $inputStream The *real* file-input class */ - function getInputStream (); + function getInputStreamerInstance (); /** * Setter for the *real* file output instance * - * @param $outputStream The *real* file-output class + * @param $outputStreamerInstance The *real* file-output class * @return void */ - function setOutputStream (FileOutputStreamer $outputStream); + function setOutputStreamerInstance (FileOutputStreamer $outputStreamerInstance); /** * Getter for the *real* file output instance * * @return $outputStream The *real* file-output class */ - function getOutputStream (); + function getOutputStreamerInstance (); /** * Saves a file with data by using the current output stream @@ -71,6 +71,6 @@ interface IoHandler extends FileInputStreamer, FileOutputStreamer { * @param $objectInstance An instance of a FrameworkInterface class (default: NULL) * @return void */ - function saveStreamToFile (SplFileInfo $infoInstance, $dataStream, FrameworkInterface $objectInstance = NULL); + function saveStreamToFile (SplFileInfo $infoInstance, string $dataStream, FrameworkInterface $objectInstance = NULL); }