]> git.mxchange.org Git - core.git/blobdiff - inc/main/classes/cache/class_MemoryCache.php
Continued:
[core.git] / inc / main / classes / cache / class_MemoryCache.php
index 7c771af65e7e6ef992b2018cd8232eb01ba3419b..a3bdbd60a785e362391deb78984851c3c83952c1 100644 (file)
@@ -1,4 +1,10 @@
 <?php
+// Own namespace
+namespace CoreFramework\Cache;
+
+// Import framework stuff
+use CoreFramework\Object\BaseFrameworkSystem;
+
 /**
  * A simple memory cache (similar to a registry)
  *
@@ -7,6 +13,7 @@
  * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
+ * @todo               Rename to InProgressCache
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -139,7 +146,5 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                        $this->dataCache->offsetUnset($offset);
                } // END - if
        }
-}
 
-// [EOF]
-?>
+}