Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 27 Oct 2020 12:27:24 +0000 (13:27 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 27 Oct 2020 12:27:24 +0000 (13:27 +0100)
- socketResource is now part of the SocketContainer class residing in "hub"
  project

Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/class_BaseFrameworkSystem.php

index a0c0e9053087e8c8bc77fd4c353b965756aa5ae2..b968ef864a9bea5d25a932744c8a9915f1f4fe05 100644 (file)
@@ -272,11 +272,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac
         */
        private $decimals  = ','; // German
 
-       /**
-        * Socket resource
-        */
-       private $socketResource = false;
-
        /**
         * Generic array
         */
@@ -1141,27 +1136,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac
                return $this->wrapperInstance;
        }
 
-       /**
-        * Setter for socket resource
-        *
-        * @param       $socketResource         A valid socket resource
-        * @return      void
-        */
-       public final function setSocketResource ($socketResource) {
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': socketResource=' . $socketResource . ',previous[' . gettype($this->socketResource) . ']=' . $this->socketResource);
-               $this->socketResource = $socketResource;
-       }
-
-       /**
-        * Getter for socket resource
-        *
-        * @return      $socketResource         A valid socket resource
-        */
-       public final function getSocketResource () {
-               //* NOISY-DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput($this->__toString() . '::' . __FUNCTION__ . ': socketResource[' . gettype($this->socketResource) . ']=' . $this->socketResource);
-               return $this->socketResource;
-       }
-
        /**
         * Setter for helper instance
         *