]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/interfaces/io/file/class_FileOutputStreamer.php
Unneccessary sanity checks removed
[shipsimu.git] / inc / classes / interfaces / io / file / class_FileOutputStreamer.php
index 2862c544f7887b74013a6d5b6e9125a36f657394..1c8cd029bdfd4b57d95fd909367f34e528ed54c1 100644 (file)
@@ -26,14 +26,10 @@ interface FileOutputStreamer extends Streamable {
         * Saves streamed (that are mostly serialized objects) data to files or
         * external servers.
         *
-        * @param               $fileName               The local file's name including full path
-        * @param               $dataArray      Array containing the compressor's extension
+        * @param       $fileName       The local file's name including full path
+        * @param       $dataArray      Array containing the compressor's extension
         *                                              and streamed data
         * @return      void
-        * @throws      NullPointerException    If an instance is null
-        * @throws      NoObjectException               If the instance is not an object
-        *                                                              instance
-        * @throws      MissingMethodException  If a required method is missing.
         */
        function saveFile ($fileName, $dataArray);
 }