X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fcontainer%2Fsocket%2Fclass_SocketContainer.php;h=0cefd859fc1a337ddfec1a16a0ebe38e3d2102b9;hp=700f35fbf5b076e575725497b8b45e3e1b65af5e;hb=def2a95907c40b71343061188f49ccbe1b8c7f20;hpb=3260dbaef7450180362c3b6085ef0e0f22de97dd diff --git a/inc/classes/main/container/socket/class_SocketContainer.php b/inc/classes/main/container/socket/class_SocketContainer.php index 700f35fb..0cefd859 100644 --- a/inc/classes/main/container/socket/class_SocketContainer.php +++ b/inc/classes/main/container/socket/class_SocketContainer.php @@ -67,18 +67,19 @@ class SocketContainer extends BaseContainer implements Registerable { /** * Checks whether the given Universal Node Locator matches with the one from package data * - * @param $unl The an Universal Node Locator + * @param $unlInstance An instance of a LocateableNode class * @return $matches Whether $address matches with the one from package data */ - public final function ifAddressMatches ($unl) { + public final function ifAddressMatches (LocateableNode $unlInstance) { // Get current package data $packageData = $this->getPackageData(); // Debug message - //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: unl=' . $unl . ',packageData=' . print_r($packageData, TRUE)); + //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('SOCKET-CONTAINER: unlInstance=' . print_r($unlInstance, TRUE) . ',packageData=' . print_r($packageData, TRUE)); // So, does both match? - $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $unl)); + die(__METHOD__ . ': Unfinished.' . PHP_EOL); + $matches = ((isset($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT])) && ($packageData[NetworkPackage::PACKAGE_DATA_RECIPIENT] === $unlInstance)); // Return result return $matches; @@ -87,7 +88,7 @@ class SocketContainer extends BaseContainer implements Registerable { /** * Checks whether the given socket matches with stored * - * @param $unl The an Universal Node Locator + * @param $unlInstance An instance of a LocateableNode class * @return $matches Whether given socket matches */ public final function ifSocketResourceMatches ($socketResource) {