]> git.mxchange.org Git - core.git/commitdiff
These methods are already in BaseListener
authorRoland Haeder <roland@mxchange.org>
Sat, 12 Sep 2015 06:00:12 +0000 (08:00 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 12 Sep 2015 06:00:12 +0000 (08:00 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/main/classes/listener/class_
inc/main/classes/listener/socket/class_SocketFileListener.php

index d09db71d6875060a0304a470513ded8806f11496..9c6006537a1f6a2342dd131541fe27c9fe078b00 100644 (file)
@@ -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]
index b9c2bc3a7b44bb074adcceffb02e616447d43958..53fc32b0cf095bb8c4278c4713870fca6b63f18c 100644 (file)
@@ -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]