]> git.mxchange.org Git - hub.git/commitdiff
Renamed to convention
authorRoland Häder <roland@mxchange.org>
Tue, 7 Jul 2009 20:05:05 +0000 (20:05 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 7 Jul 2009 20:05:05 +0000 (20:05 +0000)
application/hub/main/nodes/boot/class_HubBootNode.php
application/hub/main/nodes/class_BaseHubNode.php
application/hub/main/nodes/list/class_HubListNode.php
application/hub/main/nodes/master/class_HubMasterNode.php
application/hub/main/nodes/regular/class_HubRegularNode.php

index 9e54dec392f90139a30650f249dbe11a717b8dac..d27eb90f4bd20154674326dec2bcfd5b9b0f6baa 100644 (file)
@@ -59,7 +59,7 @@ class HubBootNode extends BaseHubNode implements NodeHelper {
         */
        public function doBootstrapping () {
                // Call generic (parent) bootstrapping method first
-               parent::doGenericBootstrapping();
+               parent::bootstrapGenericBootstrapping();
 
                // Now check if the IP address matches one of the bootstrap nodes
                if ($this->ifAddressMatchesBootstrappingNodes($_SERVER['SERVER_ADDR'])) {
index 0fb14b215f01f07053c3c9b01cc7e0b537ea6c66..1f39c2decb9a0147a07d26283011b1c129b33032 100644 (file)
@@ -153,7 +153,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable {
         * @return      void
         * @todo        This method is maybe not yet finished.
         */
-       protected function doGenericBootstrapping () {
+       protected function bootstrapGenericBootstrapping () {
                // --------------------- Hub-id acquirement phase ---------------------
                // Acquire a hub-id. This step generates on first launch a new one and
                // on any later launches it will restore the hub-id from the database.
index dc95272e19527a3ff8dedaa87243515a5d5a6cd7..d14cb6b44e1b232896949c1866bb365e306dd4e7 100644 (file)
@@ -59,7 +59,7 @@ class HubListNode extends BaseHubNode implements NodeHelper {
         */
        public function doBootstrapping () {
                // Call generic (parent) bootstrapping method first
-               parent::doGenericBootstrapping();
+               parent::bootstrapGenericBootstrapping();
                $this->partialStub('Please implement this method.');
        }
 
index 96399a495c455567c3ab54132ed6f53b8bbcea5a..7c04fc53643f691cc0d8ad246f57bab6ab671c4b 100644 (file)
@@ -59,7 +59,7 @@ class HubMasterNode extends BaseHubNode implements NodeHelper {
         */
        public function doBootstrapping () {
                // Call generic (parent) bootstrapping method first
-               parent::doGenericBootstrapping();
+               parent::bootstrapGenericBootstrapping();
                $this->partialStub('Please implement this method.');
        }
 
index 26d1456fb937ec94a800c2f6a787e8a22eaec79f..0277516727df64d2169cf4535e9ee4a827573902 100644 (file)
@@ -59,7 +59,7 @@ class HubRegularNode extends BaseHubNode implements NodeHelper {
         */
        public function doBootstrapping () {
                // Call generic (parent) bootstrapping method first
-               parent::doGenericBootstrapping();
+               parent::bootstrapGenericBootstrapping();
                $this->partialStub('Please implement this method.');
        }