]> git.mxchange.org Git - hub.git/blobdiff - application/hub/main/class_BaseHubSystem.php
Fixed a lot stuff for cruncher (missing methods, etc.)
[hub.git] / application / hub / main / class_BaseHubSystem.php
index e3264277f1f7407733cdb0054e13f015a8710373..507d4855d5a26b2d1948a5a537ae40efe306aff3 100644 (file)
@@ -54,16 +54,6 @@ class BaseHubSystem extends BaseFrameworkSystem {
         */
        private $communicatorInstance = NULL;
 
-       /**
-        * An instance of a cruncher
-        */
-       private $cruncherInstance = NULL;
-
-       /**
-        * An instance of a miner
-        */
-       private $minerInstance = NULL;
-
        /**
         * A network package handler instance
         */
@@ -153,44 +143,6 @@ class BaseHubSystem extends BaseFrameworkSystem {
                $this->communicatorInstance = $communicatorInstance;
        }
 
-       /**
-        * Getter for cruncher instance
-        *
-        * @return      $cruncherInstance       An instance of a cruncher cruncher
-        */
-       public final function getCruncherInstance () {
-               return $this->cruncherInstance;
-       }
-
-       /**
-        * Setter for cruncher instance
-        *
-        * @param       $cruncherInstance       An instance of a cruncher cruncher
-        * @return      void
-        */
-       protected final function setCruncherInstance (CruncherHelper $cruncherInstance) {
-               $this->cruncherInstance = $cruncherInstance;
-       }
-
-       /**
-        * Getter for miner instance
-        *
-        * @return      $minerInstance  An instance of a miner miner
-        */
-       public final function getMinerInstance () {
-               return $this->minerInstance;
-       }
-
-       /**
-        * Setter for miner instance
-        *
-        * @param       $minerInstance  An instance of a miner miner
-        * @return      void
-        */
-       protected final function setMinerInstance (MinerHelper $minerInstance) {
-               $this->minerInstance = $minerInstance;
-       }
-
        /**
         * Setter for network package handler instance
         *