]> git.mxchange.org Git - core.git/blobdiff - framework/main/interfaces/io/file/handler/class_IoHandler.php
Continued:
[core.git] / framework / main / interfaces / io / file / handler / class_IoHandler.php
index 6f27ae070a37b23ba05409d6e018d3b997443a8d..cf3f4adbccd9201882bc2568b08f83c88a3a50ee 100644 (file)
@@ -15,7 +15,7 @@ use \SplFileInfo;
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @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);
 
 }