]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 4 Nov 2020 13:55:00 +0000 (14:55 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 4 Nov 2020 13:55:00 +0000 (14:55 +0100)
- Minable was not generic (hub)

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

index b968ef864a9bea5d25a932744c8a9915f1f4fe05..8bc95e335785ec07a4503b477cfd72fd0e316e42 100644 (file)
@@ -232,11 +232,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac
         */
        private $blockInstance = NULL;
 
-       /**
-        * A Minable instance
-        */
-       private $minableInstance = NULL;
-
        /**
         * A FrameworkDirectory instance
         */
@@ -1323,25 +1318,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac
                return $this->blockInstance;
        }
 
-       /**
-        * Setter for Minable instance
-        *
-        * @param       $minableInstance        A Minable instance
-        * @return      void
-        */
-       protected final function setMinableInstance (Minable $minableInstance) {
-               $this->minableInstance = $minableInstance;
-       }
-
-       /**
-        * Getter for minable instance
-        *
-        * @return      $minableInstance        A Minable instance
-        */
-       protected final function getMinableInstance () {
-               return $this->minableInstance;
-       }
-
        /**
         * Setter for FrameworkDirectory instance
         *