Skip to content

Commit

Permalink
Fix XMLWriter::writeDtdEntity() stub
Browse files Browse the repository at this point in the history
$isparam is optional.
  • Loading branch information
nikic committed Aug 25, 2020
1 parent d54bc29 commit 5ecefd0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ext/xmlwriter/php_xmlwriter.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function startDtdEntity(string $name, bool $isparam): bool {}
public function endDtdEntity(): bool {}

/** @alias xmlwriter_write_dtd_entity */
public function writeDtdEntity(string $name, string $content, bool $isparam, string $publicId = UNKNOWN, string $systemId = UNKNOWN, string $ndataid = UNKNOWN): bool {}
public function writeDtdEntity(string $name, string $content, bool $isparam = false, string $publicId = UNKNOWN, string $systemId = UNKNOWN, string $ndataid = UNKNOWN): bool {}

/** @alias xmlwriter_output_memory */
public function outputMemory(bool $flush = true): string {}
Expand Down
6 changes: 3 additions & 3 deletions ext/xmlwriter/php_xmlwriter_arginfo.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* This is a generated file, edit the .stub.php file instead.
* Stub hash: c4717d4f5dafe071fb78799993db1e733d45470a */
* Stub hash: 9323f768ddea26f104b699a9c0ce54e3560b3b32 */

ZEND_BEGIN_ARG_WITH_RETURN_OBJ_TYPE_MASK_EX(arginfo_xmlwriter_open_uri, 0, 1, XMLWriter, MAY_BE_FALSE)
ZEND_ARG_TYPE_INFO(0, uri, IS_STRING, 0)
Expand Down Expand Up @@ -310,10 +310,10 @@ ZEND_END_ARG_INFO()

#define arginfo_class_XMLWriter_endDtdEntity arginfo_class_XMLWriter_openMemory

ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_XMLWriter_writeDtdEntity, 0, 3, _IS_BOOL, 0)
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_class_XMLWriter_writeDtdEntity, 0, 2, _IS_BOOL, 0)
ZEND_ARG_TYPE_INFO(0, name, IS_STRING, 0)
ZEND_ARG_TYPE_INFO(0, content, IS_STRING, 0)
ZEND_ARG_TYPE_INFO(0, isparam, _IS_BOOL, 0)
ZEND_ARG_TYPE_INFO_WITH_DEFAULT_VALUE(0, isparam, _IS_BOOL, 0, "false")
ZEND_ARG_TYPE_INFO(0, publicId, IS_STRING, 0)
ZEND_ARG_TYPE_INFO(0, systemId, IS_STRING, 0)
ZEND_ARG_TYPE_INFO(0, ndataid, IS_STRING, 0)
Expand Down

0 comments on commit 5ecefd0

Please sign in to comment.