We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ef28f6 commit 28f730dCopy full SHA for 28f730d
Php8StubsMap.php
@@ -2797,6 +2797,8 @@ public function __construct(int $phpVersionId)
2797
]);
2798
2799
$functions = \array_merge($functions, [
2800
+ '_die' => 'stubs/Zend/_die.php',
2801
+ '_exit' => 'stubs/Zend/_exit.php',
2802
'array_all' => 'stubs/ext/standard/array_all.php',
2803
'array_any' => 'stubs/ext/standard/array_any.php',
2804
'array_find' => 'stubs/ext/standard/array_find.php',
stubs/Zend/_die.php
@@ -0,0 +1,7 @@
1
+<?php
2
+
3
+/** @alias exit */
4
+#[\Since('8.4')]
5
+function _die(string|int $status = 0): never
6
+{
7
+}
stubs/Zend/_exit.php
@@ -0,0 +1,6 @@
+function _exit(string|int $status = 0): never
0 commit comments