]> git.mxchange.org Git - hub.git/commitdiff
doBootstrapping() rewritten
authorRoland Häder <roland@mxchange.org>
Mon, 30 Mar 2009 06:45:21 +0000 (06:45 +0000)
committerRoland Häder <roland@mxchange.org>
Mon, 30 Mar 2009 06:45:21 +0000 (06:45 +0000)
application/hub/interfaces/nodes/class_NodeHelper.php
application/hub/main/nodes/boot/class_HubBootNode.php
application/hub/main/nodes/class_
application/hub/main/nodes/list/class_BootListNode.php
application/hub/main/nodes/master/class_HubMasterNode.php
application/hub/main/nodes/regular/class_HubRegularNode.php

index 140f53a6ee0eb2108b787db079d7af1d85a7834c..fb7513c2b8d18c8dd8ec61c40765d58a93af56fb 100644 (file)
 interface NodeHelper extends FrameworkInterface {
        /**
         * Method to "bootstrap" the node. This step does also apply provided
-        * command-line arguments stored in the request instance
+        * command-line arguments stored in the request instance. You should now
+        * get it from calling $this->getRequestInstance().
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
         */
-       function doBootstrapping (Requestable $requestInstance);
+       function doBootstrapping ();
 }
 
 //
index e24aec2a518d0b3a0719d36947c461d336685f30..b5bd0606902e4dc931c69841af651a9c284a7e7a 100644 (file)
@@ -54,10 +54,10 @@ class HubBootNode extends BaseHubNode implements NodeHelper {
         * command-line arguments stored in the request instance. The regular node
         * should communicate with the bootstrap-nodes at this point.
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
+        * @todo        Implement this method
         */
-       public function doBootstrapping (Requestable $requestInstance) {
+       public function doBootstrapping () {
                // Call generic (parent) bootstrapping method
                parent::doGenericBootstrapping();
                $this->partialStub("Please implement this method.");
index 17cb01b59ed22038e2c4834098e40ae6f0484ea9..c357328a7010907166d42f64e9d5eb364ae39d2d 100644 (file)
@@ -54,10 +54,10 @@ class Hub???Node extends BaseHubNode implements NodeHelper {
         * command-line arguments stored in the request instance. The regular node
         * should communicate with the bootstrap-nodes at this point.
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
+        * @todo        Implement this method
         */
-       public function doBootstrapping (Requestable $requestInstance) {
+       public function doBootstrapping () {
                // Call generic (parent) bootstrapping method
                parent::doGenericBootstrapping();
                $this->partialStub("Please implement this method.");
index 86987565d6e8f7ee3da3716492043e01ffa6fc27..d0addef0dc11cc4a9cb489513eb8c12bc85fdaa5 100644 (file)
@@ -54,10 +54,10 @@ class HubListNode extends BaseHubNode implements NodeHelper {
         * command-line arguments stored in the request instance. The regular node
         * should communicate with the bootstrap-nodes at this point.
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
+        * @todo        Implement this method
         */
-       public function doBootstrapping (Requestable $requestInstance) {
+       public function doBootstrapping () {
                // Call generic (parent) bootstrapping method
                parent::doGenericBootstrapping();
                $this->partialStub("Please implement this method.");
index e2e2a1f2f8ab061a8c2ea1b78f7be3af5ff18906..9f41a0311e70d0120a14905839d824e162f1edd0 100644 (file)
@@ -54,10 +54,10 @@ class HubMasterNode extends BaseHubNode implements NodeHelper {
         * command-line arguments stored in the request instance. The regular node
         * should communicate with the bootstrap-nodes at this point.
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
+        * @todo        Implement this method
         */
-       public function doBootstrapping (Requestable $requestInstance) {
+       public function doBootstrapping () {
                // Call generic (parent) bootstrapping method
                parent::doGenericBootstrapping();
                $this->partialStub("Please implement this method.");
index dd9105121f3cee9f3612da6593140f5742c2105c..fd3dbab98bbafa6854dbfda51377e6508388e273 100644 (file)
@@ -54,10 +54,10 @@ class HubRegularNode extends BaseHubNode implements NodeHelper {
         * command-line arguments stored in the request instance. The regular node
         * should communicate with the bootstrap-nodes at this point.
         *
-        * @param       $requestInstance        An instance of a Requestable class
         * @return      void
+        * @todo        Implement this method
         */
-       public function doBootstrapping (Requestable $requestInstance) {
+       public function doBootstrapping () {
                // Call generic (parent) bootstrapping method
                parent::doGenericBootstrapping();
                $this->partialStub("Please implement this method.");