]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 2 Dec 2020 01:52:07 +0000 (02:52 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 2 Dec 2020 01:52:07 +0000 (02:52 +0100)
- ops, forgot this to remove ...

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

index 67a85fd1a87a15d14cf00cc81017318a76e07bf5..5a5cb97a2c581e14439b281b6161c8ef97fb6b30 100644 (file)
@@ -426,15 +426,6 @@ abstract class BaseFrameworkSystem extends stdClass implements FrameworkInterfac
                return $webOutputInstance;
        }
 
-       /**
-        * Getter for state instance
-        *
-        * @return      $stateInstance  A Stateable instance
-        */
-       public final function getStateInstance () {
-               return $this->stateInstance;
-       }
-
        /**
         * Setter for call-back instance
         *
index 128c096f55e9352f79bcb4bd54bfa941722e2ffb..8445f7a575c49d80fcdbf7cd9c0823e600fa4de8 100644 (file)
@@ -2,6 +2,7 @@
 // Own namespace
 namespace Org\Mxchange\CoreFramework\Traits\State;
 
+// Load framework stuff
 use Org\Mxchange\CoreFramework\State\Stateable;
 
 /**