Opps, forgot this.
[core.git] / inc / classes / interfaces / resolver / state / class_StateResolver.php
index 37b2c2e971433a3b4d41c5c45fd0794d7a42eae9..dc220cf65dcfbd7157e1d653df5159326349bf16 100644 (file)
@@ -2,11 +2,11 @@
 /**
  * An instance for state resolver 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, 2009, 2010 Core Developer Team
+ * @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
  */
 interface StateResolver extends Resolver {
        /**
-        * Returns an state instance for a given package class and raw data
+        * Returns an state instance for a given package raw data and socket resource
         *
-        * @param       $packageInstance        An instance of a package class
-        * @param       $rawData                        The raw data to handle
+        * @param       $helperInstance         An instance of a ConnectionHelper class
+        * @param       $packageData            Raw package data
+        * @param       $socketResource         A valid socket resource
         * @return      $stateInstance          An instance of the resolved state
         */
-       function resolveStateByPackage (Networkable $packageInstance, $rawData);
+       static function resolveStateByPackage (ConnectionHelper $helperInstance, array $packageData, $socketResource);
 
        /**
-        * Checks wether the given state is valid
+        * Checks whether the given state is valid
         *
         * @param       $stateName      The default state we shall execute
-        * @return      $isValid        Wether the given state is valid
+        * @return      $isValid        Whether the given state is valid
         * @throws      EmptyVariableException  Thrown if given state is not set
         */
        function isStateValid ($stateName);