We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97d994e commit 8b29105Copy full SHA for 8b29105
stubs/ext/zlib/deflate_init.php
@@ -1,5 +1,10 @@
1
<?php
2
3
+#[\Until('8.3')]
4
function deflate_init(int $encoding, array $options = []): \DeflateContext|false
5
{
6
+}
7
+#[\Since('8.3')]
8
+function deflate_init(int $encoding, array|object $options = []): \DeflateContext|false
9
+{
10
}
stubs/ext/zlib/inflate_init.php
function inflate_init(int $encoding, array $options = []): \InflateContext|false
+function inflate_init(int $encoding, array|object $options = []): \InflateContext|false
0 commit comments