fXmlRpc\Parser\XmlReaderParser::__construct PHP Method

__construct() public method

public __construct ( $validateResponse = true )
    public function __construct($validateResponse = true)
    {
        if (!extension_loaded('xmlreader')) {
            throw MissingExtensionException::extensionMissing('xmlreader');
        }
        $this->validateResponse = $validateResponse;
    }
XmlReaderParser