]> git.mxchange.org Git - hub.git/commitdiff
Next wave of rewrites:
authorRoland Häder <roland@mxchange.org>
Fri, 19 May 2017 14:35:29 +0000 (16:35 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 21 Aug 2020 16:50:01 +0000 (18:50 +0200)
- now request/response is provided by FrameworkBootstrap and no longer needs
  to be handled all over again to all places
- updated core framework

Signed-off-by: Roland Häder <roland@mxchange.org>
25 files changed:
application/hub/classes/apt-proxy/class_
application/hub/classes/apt-proxy/console/class_NodeConsoleAptProxy.php
application/hub/classes/chat/class_
application/hub/classes/chat/console/class_NodeConsoleChat.php
application/hub/classes/crawler/class_
application/hub/classes/crawler/console/class_NodeConsoleCrawler.php
application/hub/classes/cruncher/class_
application/hub/classes/database/frontend/node/class_NodeDistributedHashTableDatabaseWrapper.php
application/hub/classes/database/frontend/node/class_NodeInformationDatabaseWrapper.php
application/hub/classes/factories/node/class_NodeObjectFactory.php
application/hub/classes/miner/class_
application/hub/classes/nodes/boot/class_HubBootNode.php
application/hub/classes/nodes/class_
application/hub/classes/nodes/class_BaseHubNode.php
application/hub/classes/nodes/list/class_HubListNode.php
application/hub/classes/nodes/master/class_HubMasterNode.php
application/hub/classes/nodes/regular/class_HubRegularNode.php
application/hub/classes/template/class_BaseXmlTemplateEngine.php
application/hub/interfaces/apt-proxy/class_AptProxy.php
application/hub/interfaces/chat/class_Chatter.php
application/hub/interfaces/crawler/class_Crawler.php
application/hub/interfaces/cruncher/class_CruncherHelper.php
application/hub/interfaces/helper/nodes/class_NodeHelper.php
application/hub/interfaces/miner/class_MinerHelper.php
core

index 6361237290ec7641c081052bba71ad0338242e1c..f9605703e93eefc8a7e5c8598c95b3e939e2ef87 100644 (file)
@@ -55,7 +55,7 @@ class Node???AptProxy extends BaseNodeAptProxy implements AptProxyter {
        /**
         * Method to "bootstrap" the apt-proxy. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 8432d9bbeff47de90eab43bbe9527e9aaac50e93..73382b424fc4eef2c006471ac5d0e8c7ebc187b2 100644 (file)
@@ -56,7 +56,7 @@ class NodeConsoleAptProxy extends BaseNodeAptProxy implements AptProxy, Register
        /**
         * Method to "bootstrap" the apt-proxy. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 553875c69917aa7880763f2dc2f45aad273119ad..38cba859c73a6f2c21f7c55db141a89d48cf7854 100644 (file)
@@ -55,7 +55,7 @@ class Node???Chat extends BaseNodeChat implements Chatter {
        /**
         * Method to "bootstrap" the chatter. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index f179307dc30be805fb0e99685617da31e3b4234a..8ceb69842c06ec007730c78b6226829921fa4a23 100644 (file)
@@ -56,7 +56,7 @@ class NodeConsoleChat extends BaseNodeChat implements Chatter, Registerable {
        /**
         * Method to "bootstrap" the chatter. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index eafb128ee1062e36630ec90fc58d2ede4a25c2a1..7f8629f22fed9cb4b1f14bba7e5e7da1d030c054 100644 (file)
@@ -54,7 +54,7 @@ class Node???Crawler extends BaseNodeCrawler implements Crawler {
        /**
         * Method to "bootstrap" the crawler. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 192d3e5775e28ba395f731ca83148ab0dee04260..b2068733764bd916d52a9e0f18e1f882d77f877e 100644 (file)
@@ -56,7 +56,7 @@ class NodeConsoleCrawler extends BaseNodeCrawler implements Crawler, Registerabl
        /**
         * Method to "bootstrap" the crawler. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 2ba92d4b9afd216cc086681bd215d8222c7521fa..cc0e948ab70de10c23c7ec4547c3cce8593f0e14 100644 (file)
@@ -3,7 +3,7 @@
 namespace Hub\Cruncher;
 
 // Import framework stuff
-use CoreFramework\Request\Requestable;
+use CoreFramework\Registry\Registerable;
 
 /**
  * A hub-cruncher class for the '???' mode
@@ -44,16 +44,12 @@ class Hub???Cruncher extends BaseHubCruncher implements CruncherHelper, Register
        /**
         * Creates an instance of this hub-cruncher class
         *
-        * @param       $requestInstance        An instance of a Requestable class
-        * @return      $cruncherInstance               An instance of this hub-cruncher class
+        * @return      $cruncherInstance       An instance of this hub-cruncher class
         */
-       public final static function createHub???Cruncher (Requestable $requestInstance) {
+       public final static function createHub???Cruncher () {
                // Get a new instance
                $cruncherInstance = new Hub???Cruncher();
 
-               // Set the request instance
-               $cruncherInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $cruncherInstance;
        }
index d9d412d462eeb1f4df05397df6ac8bd45c93b542..5815b6525eacd6afccec173e5439b6c0da39f9ad 100644 (file)
@@ -8,6 +8,7 @@ use Hub\Factory\Node\NodeObjectFactory;
 use Hub\Node\BaseHubNode;
 
 // Import framework stuff
+use CoreFramework\Bootstrap\FrameworkBootstrap;
 use CoreFramework\Criteria\Local\LocalSearchCriteria;
 use CoreFramework\Criteria\Storing\StoreableCriteria;
 use CoreFramework\Database\Frontend\BaseDatabaseWrapper;
@@ -160,7 +161,7 @@ class NodeDistributedHashTableDatabaseWrapper extends BaseDatabaseWrapper implem
 
                // Get node/request instances
                $nodeInstance = NodeObjectFactory::createNodeInstance();
-               $requestInstance = ApplicationHelper::getSelfInstance()->getRequestInstance();
+               $requestInstance = FrameworkBootstrap::getRequestInstance();
 
                // Get a dataset instance
                $dataSetInstance = ObjectFactory::createObjectByConfiguredName('dataset_criteria_class', array(self::DB_TABLE_NODE_DHT));
index e8c0d4ec1300840ffcf7446433402a74f84b13d2..df0ffc20d3c7104b0a5cc8973ec6816e3275d702 100644 (file)
@@ -8,6 +8,7 @@ use Hub\Node\BaseHubNode;
 use Hub\Helper\Node\NodeHelper;
 
 // Import framework stuff
+use CoreFramework\Bootstrap\FrameworkBootstrap;
 use CoreFramework\Criteria\Local\LocalSearchCriteria;
 use CoreFramework\Database\Frontend\BaseDatabaseWrapper;
 use CoreFramework\Factory\ObjectFactory;
@@ -90,7 +91,7 @@ class NodeInformationDatabaseWrapper extends BaseDatabaseWrapper implements Node
 
                        // Search for the node number one which is hard-coded the default
                        $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_NR  , 1);
-                       $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_MODE, $nodeInstance->getRequestInstance()->getRequestElement('mode'));
+                       $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_MODE, FrameworkBootstrap::getRequestInstance()->getRequestElement('mode'));
                        $searchInstance->setLimit(1);
 
                        // Get a result back
index 727019bc56f59d5b4b243788d936499b56983082..c051e99641c522b9023d7bb13a81d9960c39adce 100644 (file)
@@ -78,7 +78,7 @@ class NodeObjectFactory extends ObjectFactory {
                        );
 
                        // Get the node instance
-                       $nodeInstance = ObjectFactory::createObjectByName($className, array($requestInstance));
+                       $nodeInstance = ObjectFactory::createObjectByName($className);
 
                        // Get a registry
                        $applicationInstance = Registry::getRegistry()->getInstance('app');
@@ -99,7 +99,5 @@ class NodeObjectFactory extends ObjectFactory {
                // Return the instance
                return $nodeInstance;
        }
-}
 
-// [EOF]
-?>
+}
index 9f0aa43556a73bd8cd7564856090cdacbdc615d4..46a808e22b0788db0b8c1eca8c9299bf3a0df0aa 100644 (file)
@@ -3,7 +3,7 @@
 namespace Hub\Miner;
 
 // Import framework stuff
-use CoreFramework\Request\Requestable;
+use CoreFramework\Registry\Registerable;
 
 /**
  * A hub-miner class for the '???' mode
@@ -44,16 +44,12 @@ class Hub???Miner extends BaseHubMiner implements MinerHelper, Registerable {
        /**
         * Creates an instance of this hub-miner class
         *
-        * @param       $requestInstance        An instance of a Requestable class
-        * @return      $minerInstance          An instance of this hub-miner class
+        * @return      $minerInstance  An instance of this hub-miner class
         */
-       public final static function createHub???Miner (Requestable $requestInstance) {
+       public final static function createHub???Miner () {
                // Get a new instance
                $minerInstance = new Hub???Miner();
 
-               // Set the request instance
-               $minerInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $minerInstance;
        }
index 97de1bfe0a20e8123c408cca4ae75ae1e911a28d..65533c5513503b6fbbee9cc2b3e7f228ca757b54 100644 (file)
@@ -7,11 +7,11 @@ use Hub\Node\BaseHubNode;
 use Hub\Helper\Node\NodeHelper;
 
 // Import framework stuff
+use CoreFramework\Bootstrap\FrameworkBootstrap;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Handler\Task\HandleableTask;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Registry\Registerable;
-use CoreFramework\Request\Requestable;
 
 /**
  * A hub-node class for the 'Boot' mode
@@ -52,13 +52,10 @@ class HubBootNode extends BaseHubNode implements NodeHelper, Registerable {
         * @param       $requestInstance        An instance of a Requestable class
         * @return      $nodeInstance           An instance of this hub-node class
         */
-       public static final function createHubBootNode (Requestable $requestInstance) {
+       public static final function createHubBootNode () {
                // Get a new instance
                $nodeInstance = new HubBootNode();
 
-               // Set the request instance
-               $nodeInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $nodeInstance;
        }
@@ -92,12 +89,12 @@ class HubBootNode extends BaseHubNode implements NodeHelper, Registerable {
                                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: UNL matches bootstrap node ' . $this->getBootUniversalNodeLocator() . '.');
 
                                // Now, does the mode match
-                               if ($this->getRequestInstance()->getRequestElement('mode') == self::NODE_TYPE_BOOT) {
+                               if (FrameworkBootstrap::getRequestInstance()->getRequestElement('mode') == self::NODE_TYPE_BOOT) {
                                        // Output debug message
                                        self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: Our node is a valid bootstrap node.');
                                } else {
                                        // Output warning
-                                       self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: WARNING: Mismatching mode ' . $this->getRequestInstance()->getRequestElement('mode') . '!=' . BaseHubNode::NODE_TYPE_BOOT . ' detected.');
+                                       self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: WARNING: Mismatching mode ' . FrameworkBootstrap::getRequestInstance()->getRequestElement('mode') . '!=' . BaseHubNode::NODE_TYPE_BOOT . ' detected.');
                                }
                        } else {
                                // IP does match, but no port
index 614be7947b1dfc17fa91661bba6a59973f367773..db94391dd289d3e0cc9a335d2e98e8623fa56125 100644 (file)
@@ -7,7 +7,7 @@ use Hub\Node\BaseHubNode;
 use Hub\Helper\Node\NodeHelper;
 
 // Import framework stuff
-use CoreFramework\Request\Requestable;
+use CoreFramework\Registry\Registerable;
 
 /**
  * A hub-node class for the '???' mode
@@ -45,16 +45,12 @@ class Hub???Node extends BaseHubNode implements NodeHelper, Registerable {
        /**
         * Creates an instance of this hub-node class
         *
-        * @param       $requestInstance        An instance of a Requestable class
-        * @return      $nodeInstance           An instance of this hub-node class
+        * @return      $nodeInstance   An instance of this hub-node class
         */
-       public final static function createHub???Node (Requestable $requestInstance) {
+       public final static function createHub???Node () {
                // Get a new instance
                $nodeInstance = new Hub???Node();
 
-               // Set the request instance
-               $nodeInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $nodeInstance;
        }
index 61e88833bb12b3c1d6ac0c60adefdb87a1a35696..201fd91bff67d33324c1f76cfc5d59b85c2ca380 100644 (file)
@@ -10,6 +10,7 @@ use Hub\Network\Receive\Receivable;
 use Hub\Tools\HubTools;
 
 // Import framework stuff
+use CoreFramework\Bootstrap\FrameworkBootstrap;
 use CoreFramework\Criteria\Add\AddableCriteria;
 use CoreFramework\Criteria\Local\LocalSearchCriteria;
 use CoreFramework\Criteria\Storing\StoreableCriteria;
@@ -143,7 +144,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
                $this->setPrivateKeyHash($this->getCryptoInstance()->hashString($this->getPrivateKey()));
 
                // Register the node id with our wrapper
-               $this->getWrapperInstance()->registerPrivateKey($this, $this->getRequestInstance(), $searchInstance);
+               $this->getWrapperInstance()->registerPrivateKey($this, FrameworkBootstrap::getRequestInstance(), $searchInstance);
 
                // Output message
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: Created new private key with hash: ' . $this->getPrivateKeyHash() . '');
@@ -162,7 +163,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
                $rngInstance = ObjectFactory::createObjectByConfiguredName('rng_class');
 
                // Generate a pseudo-random string
-               $randomString = $rngInstance->randomString($length) . ':' . $this->getBootUniversalNodeLocator() . ':' . $this->getRequestInstance()->getRequestElement('mode');
+               $randomString = $rngInstance->randomString($length) . ':' . $this->getBootUniversalNodeLocator() . ':' . FrameworkBootstrap::getRequestInstance()->getRequestElement('mode');
 
                // Add UUID for even more entropy for the hasher
                $randomString .= $this->getCryptoInstance()->createUuid();
@@ -264,7 +265,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
 
                // Output all lines
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(' ');
-               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($app->getAppName() . ' v' . $app->getAppVersion() . ' - ' . $this->getRequestInstance()->getRequestElement('mode') . ' mode active');
+               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($app->getAppName() . ' v' . $app->getAppVersion() . ' - ' . FrameworkBootstrap::getRequestInstance()->getRequestElement('mode') . ' mode active');
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Copyright (c) 2007 - 2008 Roland Haeder, 2009 - 2015 Hub Developer Team');
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput(' ');
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('This program comes with ABSOLUTELY NO WARRANTY; for details see docs/COPYING.');
@@ -301,7 +302,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
                        $this->setNodeId($this->getCryptoInstance()->hashString($this->getCryptoInstance()->encryptString($randomString)));
 
                        // Register the node id with our wrapper
-                       $this->getWrapperInstance()->registerNodeId($this, $this->getRequestInstance());
+                       $this->getWrapperInstance()->registerNodeId($this, FrameworkBootstrap::getRequestInstance());
 
                        // Output message
                        self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: Created new node-id: ' . $this->getNodeId() . '');
@@ -319,7 +320,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
 
                // Search for the node number one which is hard-coded the default
                $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_NR  , 1);
-               $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_MODE, $this->getRequestInstance()->getRequestElement('mode'));
+               $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_MODE, FrameworkBootstrap::getRequestInstance()->getRequestElement('mode'));
                $searchInstance->addCriteria(NodeInformationDatabaseWrapper::DB_COLUMN_NODE_ID  , $this->getNodeId());
                $searchInstance->setLimit(1);
 
@@ -333,7 +334,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
                $this->setSessionId($this->getCryptoInstance()->hashString($this->getCryptoInstance()->encryptString($randomString)));
 
                // Register the node id with our wrapper
-               $this->getWrapperInstance()->registerSessionId($this, $this->getRequestInstance(), $searchInstance);
+               $this->getWrapperInstance()->registerSessionId($this, FrameworkBootstrap::getRequestInstance(), $searchInstance);
 
                // Output message
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('BOOTSTRAP: Created new session-id: ' . $this->getSessionId() . '');
@@ -742,7 +743,7 @@ class BaseHubNode extends BaseHubSystem implements Updateable, AddableCriteria {
                 * HubRegularNode is faster, but if e.g. HubRegularI2PNode will be
                 * added then the next check will be TRUE.
                 */
-               $acceptsRequest = ((!$this instanceof HubRegularNode) && ($this->getRequestInstance()->getRequestElement('mode') != self::NODE_TYPE_REGULAR));
+               $acceptsRequest = ((!$this instanceof HubRegularNode) && (FrameworkBootstrap::getRequestInstance()->getRequestElement('mode') != self::NODE_TYPE_REGULAR));
 
                // Return it
                return $acceptsRequest;
index 27e8919408a326df625d3f43617d6196eac4c3e7..a2e943fa7257dfffa9d6dd9519ae0f8237571fee 100644 (file)
@@ -11,7 +11,6 @@ use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Handler\Task\HandleableTask;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Registry\Registerable;
-use CoreFramework\Request\Requestable;
 
 /**
  * A hub-node class for the 'List' mode
@@ -52,13 +51,10 @@ class HubListNode extends BaseHubNode implements NodeHelper, Registerable {
         * @param       $requestInstance        An instance of a Requestable class
         * @return      $nodeInstance           An instance of this hub-node class
         */
-       public static final function createHubListNode (Requestable $requestInstance) {
+       public static final function createHubListNode () {
                // Get a new instance
                $nodeInstance = new HubListNode();
 
-               // Set the request instance
-               $nodeInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $nodeInstance;
        }
index f0b070b55a4d8e0ecbdd634ffa386923324f9500..e2f8a27900134a3531070def18c65aa90cde4dd1 100644 (file)
@@ -11,7 +11,6 @@ use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Handler\Task\HandleableTask;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Registry\Registerable;
-use CoreFramework\Request\Requestable;
 
 /**
  * A hub-node class for the 'Master' mode
@@ -49,16 +48,12 @@ class HubMasterNode extends BaseHubNode implements NodeHelper, Registerable {
        /**
         * Creates an instance of this hub-node class
         *
-        * @param       $requestInstance        An instance of a Requestable class
-        * @return      $nodeInstance           An instance of this hub-node class
+        * @return      $nodeInstance   An instance of this hub-node class
         */
-       public static final function createHubMasterNode (Requestable $requestInstance) {
+       public static final function createHubMasterNode () {
                // Get a new instance
                $nodeInstance = new HubMasterNode();
 
-               // Set the request instance
-               $nodeInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $nodeInstance;
        }
index cb16dd301a663395fff858930e0d65ac72b3dbd7..085493ec16912af6c024815884b6e9922e4654f1 100644 (file)
@@ -11,7 +11,6 @@ use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Handler\Task\HandleableTask;
 use CoreFramework\Registry\Registry;
 use CoreFramework\Registry\Registerable;
-use CoreFramework\Request\Requestable;
 
 /**
  * A hub-node class for the 'regular' mode
@@ -52,13 +51,10 @@ class HubRegularNode extends BaseHubNode implements NodeHelper, Registerable {
         * @param       $requestInstance        An instance of a Requestable class
         * @return      $nodeInstance           An instance of this hub-node class
         */
-       public static final function createHubRegularNode (Requestable $requestInstance) {
+       public static final function createHubRegularNode () {
                // Get a new instance
                $nodeInstance = new HubRegularNode();
 
-               // Set the request instance
-               $nodeInstance->setRequestInstance($requestInstance);
-
                // Return the instance
                return $nodeInstance;
        }
index b59b6d72cfc4c3f0b1fd7807bc1c35db9446135e..1569e8ba658b630ff927a2f4298d2f2d3ffc320c 100644 (file)
@@ -3,6 +3,7 @@
 namespace Hub\TemplateEngine\Xml;
 
 // Import framework stuff
+use CoreFramework\Bootstrap\FrameworkBootstrap;
 use CoreFramework\Factory\ObjectFactory;
 use CoreFramework\Registry\Registry;
 
@@ -94,7 +95,7 @@ class BaseXmlTemplateEngine extends BaseTemplateEngine {
                $applicationInstance = Registry::getRegistry()->getInstance('app');
 
                // Determine base path
-               $templateBasePath = $this->getConfigInstance()->getConfigEntry('application_base_path') . $applicationInstance->getRequestInstance()->getRequestElement('app') . '/';
+               $templateBasePath = $this->getConfigInstance()->getConfigEntry('application_base_path') . FrameworkBootstrap::getRequestInstance()->getRequestElement('app') . '/';
 
                // Is the base path valid?
                if (empty($templateBasePath)) {
index b0d79b73e38a16ecac3ba02467a8c1207efaea16..5f6dfbf50eadcbefc16d597c97c64977151d4cb4 100644 (file)
@@ -34,7 +34,7 @@ interface AptProxy extends FrameworkInterface {
        /**
         * Method to "bootstrap" the apt-proxy. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 647bb3f1dd5e6fde7d850c942511aa2012181a35..78a7522ef5b7908eb2bfc5216970a1a15e836993 100644 (file)
@@ -34,7 +34,7 @@ interface Chatter extends FrameworkInterface {
        /**
         * Method to "bootstrap" the chatter. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 0121b919c4ad61bf613f62b54899cf7a16cf24d0..d87d18409a19cba23e86ca9f04ed527078a73bf7 100644 (file)
@@ -35,7 +35,7 @@ interface Crawler extends FrameworkInterface {
        /**
         * Method to "bootstrap" the crawler. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 8872ad10aa429986e6b910ad1b7cbb1085403feb..ddb3f293eb7936782eb5fbe3e24defbe089836f2 100644 (file)
@@ -34,7 +34,7 @@ interface CruncherHelper extends FrameworkInterface {
        /**
         * Method to "bootstrap" the cruncher. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index 36d1fc0b506ec81a914aeb6b4e686d1346872182..dbac138ca2174df54ad4afe1b1a9cc118c519e45 100644 (file)
@@ -40,7 +40,7 @@ interface NodeHelper extends Helper, AddableCriteria {
        /**
         * Method to "bootstrap" the node. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
index d7050acdf89e99729a1aa86852185619f6781850..83d6372a7a562b1dc6d2204ed059f4b7d8ffbfe4 100644 (file)
@@ -34,7 +34,7 @@ interface MinerHelper extends FrameworkInterface {
        /**
         * Method to "bootstrap" the miner. This step does also apply provided
         * command-line arguments stored in the request instance. You should now
-        * get it from calling $this->getRequestInstance().
+        * get it from calling FrameworkBootstrap::getRequestInstance().
         *
         * @return      void
         */
diff --git a/core b/core
index 49fe7de1c03a4424e4f62a70c8ab1eae2593faf0..de0fb4d6e2785338f2ba881761efc7b15c4a9530 160000 (submodule)
--- a/core
+++ b/core
@@ -1 +1 @@
-Subproject commit 49fe7de1c03a4424e4f62a70c8ab1eae2593faf0
+Subproject commit de0fb4d6e2785338f2ba881761efc7b15c4a9530