X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Floader%2Fclass_ClassLoader.php;h=0c54eb6343bd6950db1879e92b14981edb4e6a91;hb=f5cf5211620c1813c76d8231819b63a585fb2689;hp=d7c3c33d48e6e3b6b1c3e0576398fcb31bf4717c;hpb=6afa552b9bdcb28975cb1b28a247347284995424;p=core.git diff --git a/inc/loader/class_ClassLoader.php b/inc/loader/class_ClassLoader.php index d7c3c33d..0c54eb63 100644 --- a/inc/loader/class_ClassLoader.php +++ b/inc/loader/class_ClassLoader.php @@ -71,17 +71,17 @@ class ClassLoader { /** * Debug this class loader? (true = yes, false = no) */ - private $debug = false; + private $debug = FALSE; /** * Whether the file list is cached */ - private $listCached = false; + private $listCached = FALSE; /** * Wethe class content has been cached */ - private $classesCached = false; + private $classesCached = FALSE; /** * Filename for the list cache @@ -120,14 +120,14 @@ class ClassLoader { } // END - if // Skip here if already cached - if ($this->listCached === false) { + if ($this->listCached === FALSE) { // Writes the cache file of our list away $cacheContent = serialize($this->classes); file_put_contents($this->listCacheFQFN, $cacheContent); } // END - if // Skip here if already cached - if ($this->classesCached === false) { + if ($this->classesCached === FALSE) { // Generate a full-cache of all classes $cacheContent = ''; foreach ($this->loadedClasses as $fqfn) { @@ -194,7 +194,7 @@ class ClassLoader { $this->classes = unserialize($cacheContent); // List has been restored from cache! - $this->listCached = true; + $this->listCached = TRUE; } // END - if // Does the class cache exist? @@ -203,7 +203,7 @@ class ClassLoader { require($this->classCacheFQFN); // Mark the class cache as loaded - $this->classesCached = true; + $this->classesCached = TRUE; } // END - if } @@ -243,7 +243,7 @@ class ClassLoader { */ public function scanClassPath ($basePath, array $ignoreList = array() ) { // Is a list has been restored from cache, don't read it again - if ($this->listCached === true) { + if ($this->listCached === TRUE) { // Abort here return; } // END - if @@ -269,7 +269,7 @@ class ClassLoader { $basePath2 = realpath($basePath); // If the basePath is false it is invalid - if ($basePath2 === false) { + if ($basePath2 === FALSE) { /* @todo: Do not die here. */ exit(__METHOD__ . ':Cannot read ' . $basePath . ' !'); } else { @@ -354,7 +354,7 @@ class ClassLoader { // Developer mode excludes caching (better debugging) if (!defined('DEVELOPER')) { // Reset cache - $this->classesCached = false; + $this->classesCached = FALSE; } // END - if } // END - if }