Introduction
The never return type tells PHP that a function will not return any value because it either stops the program or never finishes.
When a function always stops the program, like showing an error and exiting.
When a function runs forever and never ends, like an infinite loop.
When you want to be clear that a function never gives back a result.