From 569e46aa8309f5716bcf91bee6f103c046b0eb14 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 7 Jul 2009 20:05:05 +0000 Subject: [PATCH] Renamed to convention --- application/hub/main/nodes/boot/class_HubBootNode.php | 2 +- application/hub/main/nodes/class_BaseHubNode.php | 2 +- application/hub/main/nodes/list/class_HubListNode.php | 2 +- application/hub/main/nodes/master/class_HubMasterNode.php | 2 +- application/hub/main/nodes/regular/class_HubRegularNode.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/application/hub/main/nodes/boot/class_HubBootNode.php b/application/hub/main/nodes/boot/class_HubBootNode.php index 9e54dec39..d27eb90f4 100644 --- a/application/hub/main/nodes/boot/class_HubBootNode.php +++ b/application/hub/main/nodes/boot/class_HubBootNode.php @@ -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'])) { diff --git a/application/hub/main/nodes/class_BaseHubNode.php b/application/hub/main/nodes/class_BaseHubNode.php index 0fb14b215..1f39c2dec 100644 --- a/application/hub/main/nodes/class_BaseHubNode.php +++ b/application/hub/main/nodes/class_BaseHubNode.php @@ -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. diff --git a/application/hub/main/nodes/list/class_HubListNode.php b/application/hub/main/nodes/list/class_HubListNode.php index dc95272e1..d14cb6b44 100644 --- a/application/hub/main/nodes/list/class_HubListNode.php +++ b/application/hub/main/nodes/list/class_HubListNode.php @@ -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.'); } diff --git a/application/hub/main/nodes/master/class_HubMasterNode.php b/application/hub/main/nodes/master/class_HubMasterNode.php index 96399a495..7c04fc536 100644 --- a/application/hub/main/nodes/master/class_HubMasterNode.php +++ b/application/hub/main/nodes/master/class_HubMasterNode.php @@ -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.'); } diff --git a/application/hub/main/nodes/regular/class_HubRegularNode.php b/application/hub/main/nodes/regular/class_HubRegularNode.php index 26d1456fb..027751672 100644 --- a/application/hub/main/nodes/regular/class_HubRegularNode.php +++ b/application/hub/main/nodes/regular/class_HubRegularNode.php @@ -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.'); } -- 2.39.5