From: Roland Häder Date: Tue, 7 Jul 2009 20:54:44 +0000 (+0000) Subject: initListener() in decorators should not be called X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=39f72644874e6cc2eaa2502969d7cb1b769e18da;p=hub.git initListener() in decorators should not be called --- 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.'); } }