From: Roland Haeder Date: Tue, 11 Feb 2014 21:42:32 +0000 (+0100) Subject: Added missing but unfinished method. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b803105e674769ef1423b8e3eddddde5d46d24f1;p=hub.git Added missing but unfinished method. Signed-off-by: Roland Haeder --- diff --git a/application/hub/main/discovery/dht/class_DhtRecipientDiscovery.php b/application/hub/main/discovery/dht/class_DhtRecipientDiscovery.php index 732e8ee84..3d0802b00 100644 --- a/application/hub/main/discovery/dht/class_DhtRecipientDiscovery.php +++ b/application/hub/main/discovery/dht/class_DhtRecipientDiscovery.php @@ -44,6 +44,17 @@ class DhtRecipientDiscovery extends BaseHubDiscovery implements DiscoverableNode // Return the prepared instance return $discoveryInstance; } + + /** + * Resolves one or more recipients for a DHT transfer by given package data. + * + * @param $packageData Valid package data array + * @return $recipients An indexed array with DHT recipients + * @todo 0% done + */ + public function resolveRecipientsByPackageData (array $packageData) { + $this->partialStub('Please implement this method.'); + } } // [EOF]