]> git.mxchange.org Git - hub.git/commitdiff
initListener() in decorators should not be called
authorRoland Häder <roland@mxchange.org>
Tue, 7 Jul 2009 20:54:44 +0000 (20:54 +0000)
committerRoland Häder <roland@mxchange.org>
Tue, 7 Jul 2009 20:54:44 +0000 (20:54 +0000)
application/hub/main/listener/tcp/decorators/class_ClientTcpListenerDecorator.php
application/hub/main/listener/tcp/decorators/class_HubTcpListenerDecorator.php
application/hub/main/listener/udp/decorators/class_ClientUdpListenerDecorator.php
application/hub/main/listener/udp/decorators/class_HubUdpListenerDecorator.php

index a474ccbca41bcae8a7673d0cfd6704a4a0632aa9..e23d00c25d84ccd1a4cf91b4fe96149df761d2f4 100644 (file)
@@ -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.');
        }
 }
 
index f621b30ba85951f49a042d01078b7b719f0255b3..109de807278a8139e2c8df3973ac61cd1d2277c3 100644 (file)
@@ -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.');
        }
 }
 
index 554fac9d70e991bea5a5aaf203d11b6f80827962..d814005082b648eedecfc327604f7ea22c32115c 100644 (file)
@@ -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.');
        }
 }
 
index 387eb9c232f655c753c7daca4bccfe12df4335d2..b5468fb7ece1c6cb0589cae131d32f4b413ae4a7 100644 (file)
@@ -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.');
        }
 }