Updated Config class
* Removed extends information as the Config class is an orphaned singleton.
This commit is contained in:
parent
68ac2196a3
commit
04501f2a39
1 changed files with 1 additions and 3 deletions
|
@ -24,7 +24,7 @@
|
|||
*
|
||||
* @usage <code>$config = new Config($filename); // $filename is optional, default = ../config.xml</code>
|
||||
*/
|
||||
class Config extends Object
|
||||
class Config
|
||||
{
|
||||
/**
|
||||
* Instance of the Config object
|
||||
|
@ -44,8 +44,6 @@ class Config extends Object
|
|||
*/
|
||||
public function __construct($file = '../config.xml')
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
$this->load($file);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue