The 'never' Type
12/29
Static Variables in Inherited Methods
Final Class Constants
Explicitly mark a function that it never returns:
<?php function redirect(string $uri): *never* { header('Location: ' . $uri); exit(); }
Remarks:
•
Just like
void
, only as a return type
•
It is a
bottom
type