]> git.mxchange.org Git - hub.git/commitdiff
Next wave:
authorRoland Häder <roland@mxchange.org>
Fri, 19 May 2017 19:22:23 +0000 (21:22 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 21 Aug 2020 16:50:03 +0000 (18:50 +0200)
- imported BaseListenerDecorator

Signed-off-by: Roland Häder <roland@mxchange.org>
application/hub/classes/listener/socket/decorator/class_SocketFileListenerDecorator.php
application/hub/classes/listener/tcp/decorators/class_ClientTcpListenerDecorator.php
application/hub/classes/listener/tcp/decorators/class_HubTcpListenerDecorator.php
application/hub/classes/listener/udp/decorators/class_ClientUdpListenerDecorator.php
application/hub/classes/listener/udp/decorators/class_HubUdpListenerDecorator.php

index 8084d55995abc943942fe1b26b1412a18ec54db9..8287aa9d270b3feb310899d0e7a8294c53ee64a1 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Hub\Listener\Socket;
 
+// Import application-specific stuff
+use Hub\Listener\BaseListenerDecorator;
+
 // Import framework stuff
 use CoreFramework\Listener\Listenable;
 
index 94aa42d14fa11f0142c9598709a3de637d6994e7..fc41766429924b876e80f73546afb4958597df18 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Hub\Listener\Client\Tcp;
 
+// Import application-specific stuff
+use Hub\Listener\BaseListenerDecorator;
+
 // Import framework stuff
 use CoreFramework\Listener\Listenable;
 
index d666413a12a62574ce1de2afd794ff488cbcc4ad..30324a6b7d07a9fea55a6a9e2c2171bc7456bb16 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Hub\Listener\Hub\Tcp;
 
+// Import application-specific stuff
+use Hub\Listener\BaseListenerDecorator;
+
 // Import framework stuff
 use CoreFramework\Listener\Listenable;
 
index ec79ba516ac9f1ac2de854241ee6048f8e5330a9..893349305531d4567ac34a38b61c72d57f19b7d8 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Hub\Listener\Client\Udp;
 
+// Import application-specific stuff
+use Hub\Listener\BaseListenerDecorator;
+
 // Import framework stuff
 use CoreFramework\Listener\Listenable;
 
index bc7a2c64e711a051e34fb907495207dd2abbd978..e5f7727449baff6a5393ef51a25c5cbdb5b0c349 100644 (file)
@@ -2,6 +2,9 @@
 // Own namespace
 namespace Hub\Listener\Hub\Udp;
 
+// Import application-specific stuff
+use Hub\Listener\BaseListenerDecorator;
+
 // Import framework stuff
 use CoreFramework\Listener\Listenable;