diff options
| author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-05-03 12:58:02 +0200 |
|---|---|---|
| committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-05-06 19:15:39 +0200 |
| commit | 60412c37aea007107e5b3cf03287321216cb58c4 (patch) | |
| tree | 3afbe241ee1984bb68ee90a8c6af5b6470adac49 /ext/xmlreader/php_xmlreader.stub.php | |
| parent | 89d170758777f0f888006dcca8972966ca14ede4 (diff) | |
| download | php-git-60412c37aea007107e5b3cf03287321216cb58c4.tar.gz | |
Fix UNKNOWN default values in ext/xml
Diffstat (limited to 'ext/xmlreader/php_xmlreader.stub.php')
| -rw-r--r-- | ext/xmlreader/php_xmlreader.stub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xmlreader/php_xmlreader.stub.php b/ext/xmlreader/php_xmlreader.stub.php index cbf7bb1bee..9de30e5a7a 100644 --- a/ext/xmlreader/php_xmlreader.stub.php +++ b/ext/xmlreader/php_xmlreader.stub.php @@ -47,7 +47,7 @@ class XMLReader public function read() {} /** @return bool */ - public function next(string $localname = UNKNOWN) {} + public function next(?string $localname = null) {} /** @return bool|XMLReader */ public static function open(string $URI, ?string $encoding = null, int $options = 0) {} |
