]> git.mxchange.org Git - hub.git/commitdiff
Larger access level ... :(
authorRoland Häder <roland@mxchange.org>
Fri, 27 Apr 2012 20:23:40 +0000 (20:23 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 27 Apr 2012 20:23:40 +0000 (20:23 +0000)
application/hub/main/class_BaseHubSystem.php

index 414be86c6bff471a993dc79ecedd32cfd387e642..9d87ed068a1f107ebe0bc909745700ccf961857b 100644 (file)
@@ -288,7 +288,7 @@ class BaseHubSystem extends BaseFrameworkSystem {
         * @param       $nodeId         Our new node id
         * @return      void
         */
-       private final function setNodeId ($nodeId) {
+       protected final function setNodeId ($nodeId) {
                // Set it config now
                $this->getConfigInstance()->setConfigEntry('node_id', (string) $nodeId);
        }
@@ -298,7 +298,7 @@ class BaseHubSystem extends BaseFrameworkSystem {
         *
         * @return      $nodeId         Current node id
         */
-       private final function getNodeId () {
+       public final function getNodeId () {
                // Get it from config
                return $this->getConfigInstance()->getConfigEntry('node_id');
        }
@@ -309,7 +309,7 @@ class BaseHubSystem extends BaseFrameworkSystem {
         * @param       $sessionId              Our new session id
         * @return      void
         */
-       private final function setSessionId ($sessionId) {
+       protected final function setSessionId ($sessionId) {
                $this->getConfigInstance()->setConfigEntry('session_id', (string) $sessionId);
        }