summaryrefslogtreecommitdiff
path: root/ext/xmlreader/php_xmlreader_arginfo.h
Commit message (Collapse)AuthorAgeFilesLines
* Update ext/xsl parameter namesNikita Popov2020-10-081-2/+2
| | | | | | | | | Additionally normalize to using $namespace rather than $uri for namespace parameters, including in XMLReader and XMLWriter. I went with that one as it is currently used by DOM, SimpleXML and XSL -- and our DOM parameter names follow the DOM specification. Closes GH-6295.
* Review parameter names in ext/xmlreaderDik Takken2020-10-061-7/+7
| | | | Closes GH-6255.
* Throw from XmlReader::expand() if DOM extension missingNikita Popov2020-10-051-1/+1
| | | | | | Otherwise it is hard to uphold the arginfo contract for this function -- we cannot simply mirror the zpp call, as the class entry it is based on does not exist.
* Update xmlreader arginfo hashMáté Kocsis2020-09-161-1/+1
| | | | My git client (GitHub Desktop) decided to commit and push my staged changes, so arginfo generation was not done with the previous commit.
* XMLReader::getAttributeNs() can no longer return falseMáté Kocsis2020-09-161-1/+1
|
* Promote warnings to exceptions in ext/xmlreaderMáté Kocsis2020-08-251-1/+1
| | | | Closes GH-6021
* Include stub hash in generated arginfo filesNikita Popov2020-06-241-1/+2
| | | | | | | | | | | | The hash is used to check whether the arginfo file needs to be regenerated. PHP-Parser will only be downloaded if this is actually necessary. This ensures that release artifacts will never try to regenerate stubs and thus fetch PHP-Parser, as long as you do not modify any files. Closes GH-5739.
* Fix UNKNOWN default values in ext/xmlMáté Kocsis2020-05-061-1/+1
|
* Generate function entries from stubs for a couple of extensionsMáté Kocsis2020-04-141-0/+139
Migrates ext/standard, ext/tidy, ext/tokenizer, ext/xml, ext/xml_reader, and ext/xml_writer. Closes GH-5381.