]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/compressor/class_Compressor.php
Moved setter/getter from 'hub' code as also 'city' uses it.
[core.git] / inc / classes / interfaces / compressor / class_Compressor.php
index 0e8dfcb4415471caa086fb4f30686b91edc6e862..b80a6c8d7da96db58a191a93d81508c43ad80870 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An interface for compression classes
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2015 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
- * @link               http://www.ship-simu.org
+ * @link               http://www.shipsimu.org
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -25,8 +25,8 @@ interface Compressor extends FrameworkInterface {
        /**
         * A compression stream
         *
-        * @param               $streamData                     Mixed non-object stream data
-        * @return      $streamData                     The compressed stream data
+        * @param       $streamData             Mixed non-object stream data
+        * @return      $streamData             The compressed stream data
         * @throws      InvalidObjectException  If the stream is an object
         */
        function compressStream ($streamData);
@@ -34,8 +34,8 @@ interface Compressor extends FrameworkInterface {
        /**
         * A decompression stream
         *
-        * @param               $streamData                     Mixed non-object stream data
-        * @return      $streamData                     The decompressed stream data
+        * @param       $streamData             Mixed non-object stream data
+        * @return      $streamData             The decompressed stream data
         * @throws      InvalidObjectException  If the stream is an object
         */
        function decompressStream ($streamData);