]> 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 ee26ab3623951486c65c5ae47067b897d8bbf4bf..6dae7c1ba74be924dfad670d3c6219d7848a5348 100644 (file)
@@ -97,7 +97,7 @@ class MemoryCache extends BaseFrameworkSystem implements Cacheable {
                                // Not found
                                $exists = false;
                        }
-               } // END - if
+               }
 
                // Return status
                return $exists;
@@ -128,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;
@@ -146,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
+               }
        }
 
 }