]> git.mxchange.org Git - hub.git/commitdiff
Next small wave:
authorRoland Häder <roland@mxchange.org>
Fri, 19 May 2017 13:28:41 +0000 (15:28 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 21 Aug 2020 16:50:00 +0000 (18:50 +0200)
- imported NodeInformationDatabaseWrapper
- added missing namespace in configuration entry

Signed-off-by: Roland Häder <roland@mxchange.org>
application/hub/classes/database/frontend/node/class_NodeDistributedHashTableDatabaseWrapper.php
application/hub/classes/nodes/class_BaseHubNode.php
application/hub/classes/resolver/protocol/tcp/class_TcpProtocolResolver.php
application/hub/classes/unl/class_UniversalNodeLocator.php
application/hub/config.php

index 79e850872d9f6819f1686761cb57da88fa7a61f1..bf3c1cb6f27f07ee4312594ec44bcd41b3bed754 100644 (file)
@@ -3,6 +3,7 @@
 namespace Hub\Database\Frontend\Node\Dht;
 
 // Import application-specific stuff
+use Hub\Database\Frontend\Node\Information\NodeInformationDatabaseWrapper;
 use Hub\Factory\Node\NodeObjectFactory;
 use Hub\Node\BaseHubNode;
 
index 3d29d2ab5a897999cb569151236a8a4ba33486bc..b23bf43c5f084b814d0e97f48ffa31f091b509f9 100644 (file)
@@ -3,6 +3,7 @@
 namespace Hub\Node;
 
 // Import hub-specific stuff
+use Hub\Database\Frontend\Node\Information\NodeInformationDatabaseWrapper;
 use Hub\Generic\BaseHubSystem;
 use Hub\Network\Receive\Receivable;
 use Hub\Tools\HubTools;
index 14898a695b29923d97c9fb48a64f1acbf217cfbb..29db7ca0d8afc988d7591dcfd615c9ccc03b49c4 100644 (file)
@@ -3,6 +3,7 @@
 namespace Hub\Resolver\Protocol\Tcp;
 
 // Import application-specific stuff
+use Hub\Database\Frontend\Node\Information\NodeInformationDatabaseWrapper;
 use Hub\Node\Helper\NodeHelper;
 
 // Import framework stuff
index e558353bae1292d7f9a13857419c663788e6803a..e44d88276ecd70d2b560aa6f53020337990c2a96 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Hub\Locator\Node;
 
+// Import application-specific stuff
+use Hub\Database\Frontend\Node\Information\NodeInformationDatabaseWrapper;
+
 // Import framework stuff
 use CoreFramework\Object\BaseFrameworkSystem;
 
index aa793c813d55404600fb7f7071a3738124910492..1b24f2f01e35c9804cb269f3e82f8e1f3562025b 100644 (file)
@@ -52,7 +52,7 @@ $cfg->setConfigEntry('tpl_engine', 'ConsoleOutput');
 $cfg->setConfigEntry('output_class', 'DebugConsoleOutput');
 
 // CFG: NODE-INFO-DB-WRAPPER-CLASS
-$cfg->setConfigEntry('node_info_db_wrapper_class', 'NodeInformationDatabaseWrapper');
+$cfg->setConfigEntry('node_info_db_wrapper_class', 'Hub\Database\Frontend\Node\Information\NodeInformationDatabaseWrapper');
 
 // CFG: NODE-DHT-DB-WRAPPER-CLASS
 $cfg->setConfigEntry('node_dht_db_wrapper_class', 'NodeDistributedHashTableDatabaseWrapper');