X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fconfig%2Fclass_FrameworkConfiguration.php;fp=inc%2Fconfig%2Fclass_FrameworkConfiguration.php;h=5a206d5c5572af41f1aea0bf9808925eab837ff5;hp=d6ff28a24da1226428e14824e42cf8e6ccfb462d;hb=948e194bc84bf2219426dc56ad7481d04cd82374;hpb=0ffd98d58a9add40b642e9888f6f4d57a58ed4b5 diff --git a/inc/config/class_FrameworkConfiguration.php b/inc/config/class_FrameworkConfiguration.php index d6ff28a2..5a206d5c 100644 --- a/inc/config/class_FrameworkConfiguration.php +++ b/inc/config/class_FrameworkConfiguration.php @@ -153,7 +153,7 @@ class FrameworkConfiguration implements Registerable { */ public function getConfigEntry ($configKey) { // Convert dashes to underscore - $configKey = $this->convertDashesToUnderscores($configKey); + $configKey = self::convertDashesToUnderscores($configKey); // Is a valid configuration key provided? if (empty($configKey)) { @@ -179,7 +179,7 @@ class FrameworkConfiguration implements Registerable { */ public final function setConfigEntry ($configKey, $configValue) { // Cast to string - $configKey = $this->convertDashesToUnderscores($configKey); + $configKey = self::convertDashesToUnderscores($configKey); // Is a valid configuration key key provided? if ((empty($configKey)) || (!is_string($configKey))) { @@ -208,7 +208,7 @@ class FrameworkConfiguration implements Registerable { */ public final function unsetConfigEntry ($configKey) { // Convert dashes to underscore - $configKey = $this->convertDashesToUnderscores($configKey); + $configKey = self::convertDashesToUnderscores($configKey); // Is the configuration key there? if (!$this->isConfigurationEntrySet($configKey)) {