]> git.mxchange.org Git - hub.git/blobdiff - application/hub/classes/listener/class_BaseListenerDecorator.php
Wording updated.
[hub.git] / application / hub / classes / listener / class_BaseListenerDecorator.php
index ab44d2d6f5a7274080fc78d6b6d65e4d6e670693..1f92e8a3f812abb2e80fa933fcff686f3d96f64b 100644 (file)
@@ -118,7 +118,7 @@ class BaseListenerDecorator extends BaseDecorator implements Visitable {
                $handlerInstance = $this->getListenerInstance()->getHandlerInstance();
 
                /*
-                * Does our deocorated listener (or even a decorator again) have a
+                * Does the deocorated listener (or even a decorator again) have a
                 * handler assigned? Remember that a handler will hold all incoming raw
                 * data and not a listener.
                 */
@@ -138,11 +138,11 @@ class BaseListenerDecorator extends BaseDecorator implements Visitable {
                $receiverInstance = NetworkPackageFactory::createNetworkPackageInstance();
 
                /*
-                * We have some pending decoded data. The receiver instance is an
+                * There is some decoded data waiting. The receiver instance is an
                 * abstract network package (which can be received and sent out) so
-                * handle the decoded data over. At this moment we don't need to know
-                * if the decoded data origins from a TCP or UDP connection so we can
-                * just pass it over to the network package receiver
+                * handle the decoded data over. At this moment it is not needed to
+                * know if the decoded data origins from a TCP or UDP connection so it
+                * can just be passed over to the network package receiver.
                 */
                //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__)->debugOutput('BASE-LISTENER-DECORATOR[' . __METHOD__ . ':' . __LINE__ . '] Going to handle over some raw data to receiver instance (' . $receiverInstance->__toString() . ') ...');
                $receiverInstance->addRawDataToIncomingStack($handlerInstance);