]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/cache/class_MemoryCache.php
Continued:
[core.git] / framework / main / classes / cache / class_MemoryCache.php
index fb926f431fc18e4e08fc415b806a546b6df382d4..2294ba7e726203a33a24fd72b977a952c583b56f 100644 (file)
@@ -1,16 +1,18 @@
 <?php
 // Own namespace
-namespace CoreFramework\Cache;
+namespace Org\Mxchange\CoreFramework\Cache\Memory;
 
 // Import framework stuff
-use CoreFramework\Object\BaseFrameworkSystem;
+use Org\Mxchange\CoreFramework\Cache\Cacheable;
+use Org\Mxchange\CoreFramework\Object\BaseFrameworkSystem;
+use Org\Mxchange\CoreFramework\ObjectArray\FrameworkArrayObject;
 
 /**
  * A simple memory cache (similar to a registry)
  *
  * @author             Roland Haeder <webmaster@shipsimu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team
+ * @copyright  Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2023 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.shipsimu.org
  * @todo               Rename to InProgressCache
@@ -39,7 +41,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
         *
         * @return      void
         */
-       protected function __construct () {
+       private function __construct () {
                // Call parent constructor
                parent::__construct(__CLASS__);
        }
@@ -83,7 +85,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                $exists = $this->dataCache->offsetExists($offset);
 
                // So look for array element?
-               if (($exists === TRUE) && (!is_null($arrayElement))) {
+               if (($exists === true) && (!is_null($arrayElement))) {
                        // Get it
                        $array = $this->offsetGet($offset);
 
@@ -93,9 +95,9 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                                $exists = (count($array[$arrayElement]) >= $minimumCount);
                        } else {
                                // Not found
-                               $exists = FALSE;
+                               $exists = false;
                        }
-               } // END - if
+               }
 
                // Return status
                return $exists;
@@ -126,7 +128,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                if ($this->offsetExists($offset)) {
                        // Then get the data from it
                        $data = $this->dataCache->offsetGet($offset);
-               } // END - if
+               }
 
                // Return data
                return $data;
@@ -144,7 +146,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                        // Purge only existing keys
                        //* DEBUG: */ self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('CACHE: Unsetting cache ' . $offset);
                        $this->dataCache->offsetUnset($offset);
-               } // END - if
+               }
        }
 
 }