Renamed Registry -> GenericRegistry to make it clear that this registry does
[core.git] / framework / main / classes / application / class_BaseApplication.php
index d129bbb531dcfcb90184652aa56e0b60347bb901..ea60fb1c889ed7be3c9e3299a810b7b88b87c70c 100644 (file)
@@ -4,7 +4,7 @@ namespace Org\Mxchange\CoreFramework\Application;
 
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Object\BaseFrameworkSystem;
-use Org\Mxchange\CoreFramework\Registry\Registry;
+use Org\Mxchange\CoreFramework\Registry\GenericRegistry;
 
 /**
  * A general application class for the ApplicationHelper classes.
@@ -28,7 +28,7 @@ use Org\Mxchange\CoreFramework\Registry\Registry;
  * You should have received a copy of the GNU General Public License
  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
-class BaseApplication extends BaseFrameworkSystem {
+abstract class BaseApplication extends BaseFrameworkSystem {
        /**
         * Protected constructor
         *
@@ -40,7 +40,7 @@ class BaseApplication extends BaseFrameworkSystem {
                parent::__construct($className);
 
                // Get registry instance
-               $registryInstance = Registry::getRegistry();
+               $registryInstance = GenericRegistry::getRegistry();
 
                // Add this instance
                $registryInstance->addInstance('application', $this);