From: Roland Häder Date: Fri, 27 Apr 2012 20:23:40 +0000 (+0000) Subject: Larger access level ... :( X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=99510a0c56272c3be1e3b131f7bbb325aa3b612d;p=hub.git Larger access level ... :( --- diff --git a/application/hub/main/class_BaseHubSystem.php b/application/hub/main/class_BaseHubSystem.php index 414be86c6..9d87ed068 100644 --- a/application/hub/main/class_BaseHubSystem.php +++ b/application/hub/main/class_BaseHubSystem.php @@ -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); }