Updated Config class

* Removed extends information as the Config class is an orphaned singleton.
This commit is contained in:
Josh Sherman 2010-03-11 21:00:33 -05:00
parent 68ac2196a3
commit 04501f2a39

View file

@ -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);
}