]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/nodes/class_BaseHubNode.php
Renamed method to better naming scheme ('bootstrapping' node or 'bootstrap node'?).
[hub.git] / application / hub / main / nodes / class_BaseHubNode.php
index c3e4b7d21521497c420e7d5a2df2a95123a9caaf..027091571d8abc8d12dc1a0f183067eb84a14d73 100644 (file)
@@ -37,7 +37,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
        const OBJECT_LIST_SEPARATOR = ',';
 
        /**
-        * IP/port number of bootstrapping node
+        * IP/port number of bootstrap node
         */
        private $bootIpPort = '';
 
@@ -200,12 +200,12 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
        }
 
        /**
-        * Checks whether the given IP address matches one of the bootstrapping nodes
+        * Checks whether the given IP address matches one of the bootstrap nodes
         *
         * @param       $remoteAddr             IP address to checkout against our bootstrapping list
         * @return      $isFound                Whether the IP is found
         */
-       protected function ifAddressMatchesBootstrappingNodes ($remoteAddr) {
+       protected function ifAddressMatchesBootstrapNodes ($remoteAddr) {
                // By default nothing is found
                $isFound = FALSE;