File tree 3 files changed +15
-0
lines changed
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -2806,8 +2806,10 @@ public function __construct(int $phpVersionId)
2806
2806
'bcdivmod ' => 'stubs/ext/bcmath/bcdivmod.php ' ,
2807
2807
'bcfloor ' => 'stubs/ext/bcmath/bcfloor.php ' ,
2808
2808
'bcround ' => 'stubs/ext/bcmath/bcround.php ' ,
2809
+ 'die ' => 'stubs/Zend/die.php ' ,
2809
2810
'dom \\adjacentposition ' => 'stubs/ext/dom/Dom/AdjacentPosition.php ' ,
2810
2811
'dom \\import_simplexml ' => 'stubs/ext/dom/Dom/import_simplexml.php ' ,
2812
+ 'exit ' => 'stubs/Zend/exit.php ' ,
2811
2813
'fpow ' => 'stubs/ext/standard/fpow.php ' ,
2812
2814
'grapheme_str_split ' => 'stubs/ext/intl/grapheme_str_split.php ' ,
2813
2815
'http_clear_last_response_headers ' => 'stubs/ext/standard/http_clear_last_response_headers.php ' ,
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ /** @alias exit */
4
+ #[\Since('8.4 ' )]
5
+ function die (string |int $ status = 0 ): never
6
+ {
7
+ }
Original file line number Diff line number Diff line change
1
+ <?php
2
+
3
+ #[\Since('8.4 ' )]
4
+ function exit (string |int $ status = 0 ): never
5
+ {
6
+ }
You can’t perform that action at this time.
0 commit comments