Voodoo\Core\Config::__construct PHP Method

__construct() public method

Constructor
public __construct ( string $namespace )
$namespace string - A unique name that will hold data for each set of config
    public function __construct($namespace)
    {
        $this->namespace = $namespace;
        if (!$this->namespaceExists()) {
            self::$Config[$this->namespace] = ["__called" => false, "data" => []];
        }
    }