diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-16 21:27:01 +0200 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2020-09-16 21:27:01 +0200 |
commit | de912821e0c2e154a4fca0479755c9e089b130b8 (patch) | |
tree | ec33aaeeb9265748863ff71a9e543cb56fe3d896 /ext/xml | |
parent | c76910cd967f498065f50f17dcaad941792e8430 (diff) | |
download | php-git-de912821e0c2e154a4fca0479755c9e089b130b8.tar.gz |
Display string default values in stubs more uniformly
Settling on using quoted string
Diffstat (limited to 'ext/xml')
-rw-r--r-- | ext/xml/xml.stub.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/xml/xml.stub.php b/ext/xml/xml.stub.php index 5f90d91fe4..b5af233761 100644 --- a/ext/xml/xml.stub.php +++ b/ext/xml/xml.stub.php @@ -4,7 +4,7 @@ function xml_parser_create(?string $encoding = null): XmlParser {} -function xml_parser_create_ns(?string $encoding = null, string $sep = ':'): XmlParser {} +function xml_parser_create_ns(?string $encoding = null, string $sep = ":"): XmlParser {} function xml_set_object(XmlParser $parser, object $obj): bool {} |