summaryrefslogtreecommitdiff
path: root/ext/xmlwriter/php_xmlwriter.stub.php
Commit message (Collapse)AuthorAgeFilesLines
* Generate class entries from stubs for com, standard, xmlreader, xmlwriter, ↵Máté Kocsis2021-02-221-1/+1
| | | | | | xsl, zip, Zend Closes GH-6706
* Verify parameter names of function aliasesMáté Kocsis2020-10-161-0/+2
| | | | Closes GH-6335
* Remove return types from XMLWriter stubsChristoph M. Becker2020-10-111-125/+251
| | | | | | These break BC, and as such we have to stick with docblock annotations. Closes GH-6319.
* Update ext/xsl parameter namesNikita Popov2020-10-081-8/+8
| | | | | | | | | 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.
* Improve parameter names in ext/xmlwriterDik Takken2020-10-011-46/+46
| | | | Closes GH-6202.
* Update the default values of xmlwriter_write_dtd_entity()Máté Kocsis2020-09-181-1/+1
| | | | Its default method handling had already been fixed not long ago, but only the stub of its method counterpart was updated.
* Display string default values in stubs more uniformlyMáté Kocsis2020-09-161-2/+2
| | | | Settling on using quoted string
* Fix UNKNOWN default values in various extensionsMáté Kocsis2020-09-071-1/+1
| | | | Closes GH-6075
* Fix XMLWriter::writeDtdEntity() stubNikita Popov2020-08-251-1/+1
| | | | $isparam is optional.
* FR #79344: xmlwriter_write_attribute_ns: $prefix should be nullableChristoph M. Becker2020-06-161-4/+4
| | | | | | | | The `$prefix` parameter of `xmlwriter_write_element_ns()` and `xmlwriter_start_element_ns()` is nullable, what allows these functions to be used instead of their non NS variants. Consequently, we make the `$prefix` parameter of `xmlwriter_write_attribute_ns()` and `xmlwriter_start_attribute_ns()` nullable as well.
* Generate function entries from stubs for a couple of extensionsMáté Kocsis2020-04-141-0/+216
Migrates ext/standard, ext/tidy, ext/tokenizer, ext/xml, ext/xml_reader, and ext/xml_writer. Closes GH-5381.