X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig%2Fclass_FrameworkConfiguration.php;h=12d7044218d0e9db4e617a1cb6ec2c796e31c987;hb=253b7896740f6146fe92f2caa85c52438c209ae7;hp=5d47232ca4bdcee9f7b5d65303e1091125628ee3;hpb=49f84a522f0ccac3b70728cd41011a0be0eed8cf;p=core.git diff --git a/inc/config/class_FrameworkConfiguration.php b/inc/config/class_FrameworkConfiguration.php index 5d47232c..12d70442 100644 --- a/inc/config/class_FrameworkConfiguration.php +++ b/inc/config/class_FrameworkConfiguration.php @@ -8,7 +8,7 @@ * @see ClassLoader * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright (c) 2007 - 2009 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.ship-simu.org * @@ -111,7 +111,7 @@ class FrameworkConfiguration implements Registerable { // Base path added? (Uni* / Windows) if ((substr($inc, 0, 1) != '/') && (substr($inc, 1, 1) != ':')) { // Generate FQFN - $fqfn = $this->readConfig('base_path') . '/inc/extra/' . $inc; + $fqfn = $this->getConfigEntry('base_path') . '/inc/extra/' . $inc; } // END - if } // END - if @@ -130,7 +130,7 @@ class FrameworkConfiguration implements Registerable { * @throws ConfigEntryNotFoundException If a configuration element * was not found */ - public function readConfig ($cfgEntry) { + public function getConfigEntry ($cfgEntry) { // Cast to string $cfgEntry = (string) $cfgEntry;