From: Roland Haeder Date: Sat, 12 Sep 2015 06:00:12 +0000 (+0200) Subject: These methods are already in BaseListener X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3bfe3653b3792fb76816d1db3a8589073c82b1cd;p=core.git These methods are already in BaseListener Signed-off-by: Roland Häder --- diff --git a/inc/main/classes/listener/class_ b/inc/main/classes/listener/class_ index d09db71d..9c600653 100644 --- a/inc/main/classes/listener/class_ +++ b/inc/main/classes/listener/class_ @@ -85,24 +85,6 @@ class ???Listener extends BaseListener implements Listenable { $this->partialStub('Need to implement this method.') { } - /** - * Getter for listen address - * - * @return $listenAddress The address this listener should listen on - */ - public function getListenAddress () { - $this->partialStub('Need to implement this method.') { - } - - /** - * Getter for listen port - * - * @return $listenPort The port this listener should listen on - */ - public function getListenPort () { - $this->partialStub('Need to implement this method.') { - } - /** * Getter for connection type * @@ -111,15 +93,6 @@ class ???Listener extends BaseListener implements Listenable { public function getConnectionType () { $this->partialStub('Need to implement this method.') { } - - /** - * Getter for peer pool instance - * - * @return $poolInstance The peer pool instance we shall set - */ - public function getPoolInstance () { - $this->partialStub('Need to implement this method.') { - } } // [EOF] diff --git a/inc/main/classes/listener/socket/class_SocketFileListener.php b/inc/main/classes/listener/socket/class_SocketFileListener.php index b9c2bc3a..53fc32b0 100644 --- a/inc/main/classes/listener/socket/class_SocketFileListener.php +++ b/inc/main/classes/listener/socket/class_SocketFileListener.php @@ -85,24 +85,6 @@ class SocketFileListener extends BaseListener implements Listenable { $this->partialStub('Need to implement this method.'); } - /** - * Getter for listen address - * - * @return $listenAddress The address this listener should listen on - */ - public function getListenAddress () { - $this->partialStub('Need to implement this method.'); - } - - /** - * Getter for listen port - * - * @return $listenPort The port this listener should listen on - */ - public function getListenPort () { - $this->partialStub('Need to implement this method.'); - } - /** * Getter for connection type * @@ -111,15 +93,6 @@ class SocketFileListener extends BaseListener implements Listenable { public function getConnectionType () { $this->partialStub('Need to implement this method.'); } - - /** - * Getter for peer pool instance - * - * @return $poolInstance The peer pool instance we shall set - */ - public function getPoolInstance () { - $this->partialStub('Need to implement this method.'); - } } // [EOF]