Auth_Yadis_XMLParser::registerNamespace PHP Method

registerNamespace() public method

Register a namespace with the XML parser. This should be overridden by subclasses.
public registerNamespace ( string $prefix, string $uri ) : boolean
$prefix string The namespace prefix to appear in XML tag names.
$uri string The namespace URI to be used to identify the namespace in the XML.
return boolean $result True if the registration succeeded; false otherwise.
    function registerNamespace($prefix, $uri)
    {
        // Not implemented.
    }