]> git.mxchange.org Git - core.git/blobdiff - inc/classes/interfaces/streams/input/class_InputStreamable.php
Copyright year updated, converted double->single quotes
[core.git] / inc / classes / interfaces / streams / input / class_InputStreamable.php
index fdeb6573928e89b741b4d7342e23d760cac3889b..6e213e8654bfefc843b35217daaa5575dd51b3b0 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An InputStreamable interface
  *
- * @author             Roland Haeder <webmaster@ship-simu.org>
+ * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2012 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2013 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
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-interface InputStreamable extends FrameworkInterface {
-       /**
-        * Streams the data and maybe does something to it
-        *
-        * @param       $data                           The data (string mostly) to "stream"
-        * @param       $handlerInstance        An instance of a Networkable class
-        * @return      $data                           The data (string mostly) to "stream"
-        */
-       function streamNetworkData ($data, Networkable $handlerInstance);
+interface InputStreamable extends Streamable {
 }
 
 // [EOF]