]> git.mxchange.org Git - core.git/blobdiff - framework/config/class_FrameworkConfiguration.php
Continued:
[core.git] / framework / config / class_FrameworkConfiguration.php
index d5d400d0699bb55a665199e6752129fd6867f172..199b15b8b71f0db1a29022d58e0cc41daf47407c 100644 (file)
@@ -86,6 +86,7 @@ class FrameworkConfiguration implements Registerable {
         */
        public function isConfigurationEntrySet (string $configKey) {
                // Is it null?
+               //* NOISY-DEBUG: */ printf('[%s:%d]: configKey=%s - CALLED!' . PHP_EOL, __METHOD__, __LINE__, $configKey);
                if (empty($configKey)) {
                        // Entry is empty
                        throw new InvalidArgumentException('Parameter "configKey" is empty', self::EXCEPTION_CONFIG_KEY_IS_EMPTY);
@@ -95,6 +96,7 @@ class FrameworkConfiguration implements Registerable {
                $isset = ((isset(self::$configData[$configKey])) || (array_key_exists($configKey, self::$configData)));
 
                // Return the result
+               //* NOISY-DEBUG: */ printf('[%s:%d]: isset=%s - EXIT!' . PHP_EOL, __METHOD__, __LINE__, intval($isset));
                return $isset;
        }