]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/states/node/active/class_NodeActiveState.php
State pattern added, hub continued (sorry, I let it lay around uncommitted for long...
[hub.git] / application / hub / main / states / node / active / class_NodeActiveState.php
index 6dd80ce50a6d7772ab1a0f91c6736aab3f8e3513..9544e3a5a5a7274646d383233c3724021fa83d41 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * A Active node state class
+ * An active node state class
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-class NodeActiveState extends BaseState implements NodeStateable {
+class NodeActiveState extends BaseNodeState implements Stateable {
        /**
         * Protected constructor
         *
@@ -39,14 +39,14 @@ class NodeActiveState extends BaseState implements NodeStateable {
         * Creates an instance of this class
         *
         * @param       $nodeInstance   An instance of a NodeHelper class
-        * @return      $stateInstance  An instance of a NodeStateable class
+        * @return      $stateInstance  An instance of a Stateable class
         */
        public final static function createNodeActiveState (NodeHelper $nodeInstance) {
                // Get new instance
                $stateInstance = new NodeActiveState();
 
                // Debug message
-               $stateInstance->debugOutput("NODE-STATE: Has changed from " . $nodeInstance->getPrintableState() . " to " . $stateInstance->getStateName() . ".");
+               $stateInstance->debugOutput('NODE-STATE: Has changed from ' . $nodeInstance->getPrintableState() . ' to ' . $stateInstance->getStateName() . '.');
 
                // Set the node instance
                $stateInstance->setNodeInstance($nodeInstance);