]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/active/class_NodeActiveState.php
Updated 'core'.
[hub.git] / application / hub / main / states / node / active / class_NodeActiveState.php
index 646e9fe68fef89b603d9ca02334976aedee72144..0352ff754aabdccfe2052083fcb83ae30c7d578e 100644 (file)
@@ -38,18 +38,14 @@ class NodeActiveState extends BaseNodeState implements Stateable {
        /**
         * Creates an instance of this class
         *
-        * @param       $nodeInstance   An instance of a NodeHelper class
         * @return      $stateInstance  An instance of a Stateable class
         */
-       public static final function createNodeActiveState (NodeHelper $nodeInstance) {
+       public static final function createNodeActiveState () {
                // Get new instance
                $stateInstance = new NodeActiveState();
 
-               // Enable isActive flag in node instance
-               $nodeInstance->enableIsActive();
-
-               // Set the node instance
-               $stateInstance->setNodeInstance($nodeInstance);
+               // Get node instance and set 'active' flag
+               NodeObjectFactory::createNodeInstance()->enableIsActive();
 
                // Return the prepared instance
                return $stateInstance;
@@ -62,7 +58,7 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         */
        public function nodeAnnouncingToUpperHubs () {
                // Create the new state instance
-               NodeStateFactory::createNodeStateInstanceByName('announcing', $this->getNodeInstance());
+               NodeStateFactory::createNodeStateInstanceByName('announcing');
        }
 
        /**
@@ -76,7 +72,7 @@ class NodeActiveState extends BaseNodeState implements Stateable {
         */
        public function nodeHasSelfConnected () {
                // Create the new state instance
-               NodeStateFactory::createNodeStateInstanceByName('reachable', $this->getNodeInstance());
+               NodeStateFactory::createNodeStateInstanceByName('reachable');
        }
 }