]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/init/class_NodeInitState.php
Cruncher continued and rewritten to use states:
[hub.git] / application / hub / main / states / node / init / class_NodeInitState.php
index 2d0092d2a6c84445417a9572072d6de55b7ed749..473204dce5ca556440f1613e2d0d2c9e00fc2914 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009, 2010 Hub Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2011 Hub Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -41,7 +41,7 @@ class NodeInitState extends BaseNodeState implements Stateable {
         * @param       $nodeInstance   An instance of a NodeHelper class
         * @return      $stateInstance  An instance of a Stateable class
         */
-       public final static function createNodeInitState (NodeHelper $nodeInstance) {
+       public static final function createNodeInitState (NodeHelper $nodeInstance) {
                // Get new instance
                $stateInstance = new NodeInitState();
 
@@ -58,10 +58,13 @@ class NodeInitState extends BaseNodeState implements Stateable {
        /**
         * State change for if the node has just generated a session id. This makes
         * nodes with current state 'init' now 'virgin'.
+        *
+        * @return      void
+        * @todo        We might want to move some calls to this method to fill it with life
         */
        public function nodeGeneratedSessionId () {
                // Create the new state instance
-               StateFactory::createStateInstanceByName('virgin', $this->getNodeInstance());
+               NodeStateFactory::createNodeStateInstanceByName('virgin', $this->getNodeInstance());
        }
 
 }