From 39f72644874e6cc2eaa2502969d7cb1b769e18da Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 7 Jul 2009 20:54:44 +0000 Subject: [PATCH] initListener() in decorators should not be called --- .../tcp/decorators/class_ClientTcpListenerDecorator.php | 3 +-- .../listener/tcp/decorators/class_HubTcpListenerDecorator.php | 3 +-- .../udp/decorators/class_ClientUdpListenerDecorator.php | 3 +-- .../listener/udp/decorators/class_HubUdpListenerDecorator.php | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/application/hub/main/listener/tcp/decorators/class_ClientTcpListenerDecorator.php b/application/hub/main/listener/tcp/decorators/class_ClientTcpListenerDecorator.php index a474ccbca..e23d00c25 100644 --- a/application/hub/main/listener/tcp/decorators/class_ClientTcpListenerDecorator.php +++ b/application/hub/main/listener/tcp/decorators/class_ClientTcpListenerDecorator.php @@ -53,10 +53,9 @@ class ClientTcpListenerDecorator extends BaseListenerDecorator implements Listen * Initializes the listener by setting up the required socket server * * @return void - * @todo 0% done */ public function initListener() { - $this->partialStub('Need to implement this method.'); + $this->partialStub('WARNING: This method should not be called.'); } } diff --git a/application/hub/main/listener/tcp/decorators/class_HubTcpListenerDecorator.php b/application/hub/main/listener/tcp/decorators/class_HubTcpListenerDecorator.php index f621b30ba..109de8072 100644 --- a/application/hub/main/listener/tcp/decorators/class_HubTcpListenerDecorator.php +++ b/application/hub/main/listener/tcp/decorators/class_HubTcpListenerDecorator.php @@ -53,10 +53,9 @@ class HubTcpListenerDecorator extends BaseListenerDecorator implements Listenabl * Initializes the listener by setting up the required socket server * * @return void - * @todo 0% done */ public function initListener() { - $this->partialStub('Need to implement this method.'); + $this->partialStub('WARNING: This method should not be called.'); } } diff --git a/application/hub/main/listener/udp/decorators/class_ClientUdpListenerDecorator.php b/application/hub/main/listener/udp/decorators/class_ClientUdpListenerDecorator.php index 554fac9d7..d81400508 100644 --- a/application/hub/main/listener/udp/decorators/class_ClientUdpListenerDecorator.php +++ b/application/hub/main/listener/udp/decorators/class_ClientUdpListenerDecorator.php @@ -53,10 +53,9 @@ class ClientUdpListenerDecorator extends BaseListenerDecorator implements Listen * Initializes the listener by setting up the required socket server * * @return void - * @todo 0% done */ public function initListener() { - $this->partialStub('Need to implement this method.'); + $this->partialStub('WARNING: This method should not be called.'); } } diff --git a/application/hub/main/listener/udp/decorators/class_HubUdpListenerDecorator.php b/application/hub/main/listener/udp/decorators/class_HubUdpListenerDecorator.php index 387eb9c23..b5468fb7e 100644 --- a/application/hub/main/listener/udp/decorators/class_HubUdpListenerDecorator.php +++ b/application/hub/main/listener/udp/decorators/class_HubUdpListenerDecorator.php @@ -53,10 +53,9 @@ class HubUdpListenerDecorator extends BaseListenerDecorator implements Listenabl * Initializes the listener by setting up the required socket server * * @return void - * @todo 0% done */ public function initListener() { - $this->partialStub('Need to implement this method.'); + $this->partialStub('WARNING: This method should not be called.'); } } -- 2.39.5