From: Roland Häder Date: Fri, 19 May 2017 19:22:23 +0000 (+0200) Subject: Next wave: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b8d104203305e2f40911bd4aa623b97100b4e700;p=hub.git Next wave: - imported BaseListenerDecorator Signed-off-by: Roland Häder --- diff --git a/application/hub/classes/listener/socket/decorator/class_SocketFileListenerDecorator.php b/application/hub/classes/listener/socket/decorator/class_SocketFileListenerDecorator.php index 8084d5599..8287aa9d2 100644 --- a/application/hub/classes/listener/socket/decorator/class_SocketFileListenerDecorator.php +++ b/application/hub/classes/listener/socket/decorator/class_SocketFileListenerDecorator.php @@ -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; diff --git a/application/hub/classes/listener/tcp/decorators/class_ClientTcpListenerDecorator.php b/application/hub/classes/listener/tcp/decorators/class_ClientTcpListenerDecorator.php index 94aa42d14..fc4176642 100644 --- a/application/hub/classes/listener/tcp/decorators/class_ClientTcpListenerDecorator.php +++ b/application/hub/classes/listener/tcp/decorators/class_ClientTcpListenerDecorator.php @@ -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; diff --git a/application/hub/classes/listener/tcp/decorators/class_HubTcpListenerDecorator.php b/application/hub/classes/listener/tcp/decorators/class_HubTcpListenerDecorator.php index d666413a1..30324a6b7 100644 --- a/application/hub/classes/listener/tcp/decorators/class_HubTcpListenerDecorator.php +++ b/application/hub/classes/listener/tcp/decorators/class_HubTcpListenerDecorator.php @@ -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; diff --git a/application/hub/classes/listener/udp/decorators/class_ClientUdpListenerDecorator.php b/application/hub/classes/listener/udp/decorators/class_ClientUdpListenerDecorator.php index ec79ba516..893349305 100644 --- a/application/hub/classes/listener/udp/decorators/class_ClientUdpListenerDecorator.php +++ b/application/hub/classes/listener/udp/decorators/class_ClientUdpListenerDecorator.php @@ -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; diff --git a/application/hub/classes/listener/udp/decorators/class_HubUdpListenerDecorator.php b/application/hub/classes/listener/udp/decorators/class_HubUdpListenerDecorator.php index bc7a2c64e..e5f772744 100644 --- a/application/hub/classes/listener/udp/decorators/class_HubUdpListenerDecorator.php +++ b/application/hub/classes/listener/udp/decorators/class_HubUdpListenerDecorator.php @@ -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;