Opps
authorRoland Häder <roland@mxchange.org>
Sun, 27 May 2012 14:41:43 +0000 (14:41 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 27 May 2012 14:41:43 +0000 (14:41 +0000)
inc/config/class_FrameworkConfiguration.php

index 43383ad5dc45fd1b68177038699f512e9cd969b7..914d13a183b397e0d77b573176932c384be6dd50 100644 (file)
@@ -187,22 +187,22 @@ class FrameworkConfiguration implements Registerable {
         * Unset a configuration entry, the entry must be there or else an
         * exception is thrown.
         *
         * Unset a configuration entry, the entry must be there or else an
         * exception is thrown.
         *
-        * @param       $configKey      Configuration entry to unset
+        * @param       $configEntry    Configuration entry to unset
         * @return      void
         * @throws      NoConfigEntryException  If a configuration element was not found
         */
         * @return      void
         * @throws      NoConfigEntryException  If a configuration element was not found
         */
-       public final function unsetConfigEntry ($configKey) {
+       public final function unsetConfigEntry ($configEntry) {
                // Convert dashes to underscore
                $configEntry = $this->convertDashesToUnderscores($configEntry);
 
                // Is the configuration entry there?
                // Convert dashes to underscore
                $configEntry = $this->convertDashesToUnderscores($configEntry);
 
                // Is the configuration entry there?
-               if (!$this->isConfigurationEntrySet($configKey)) {
+               if (!$this->isConfigurationEntrySet($configEntry)) {
                        // Entry was not found!
                        // Entry was not found!
-                       throw new NoConfigEntryException(array(__CLASS__, $configKey), self::EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND);
+                       throw new NoConfigEntryException(array(__CLASS__, $configEntry), self::EXCEPTION_CONFIG_ENTRY_WAS_NOT_FOUND);
                } // END - if
 
                // Unset it
                } // END - if
 
                // Unset it
-               unset($this->config[$configKey]);
+               unset($this->config[$configEntry]);
        }
 
        /**
        }
 
        /**