1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-20 20:58:41 +01:00

17 lines
178 B
Markdown
Raw Normal View History

2020-03-19 12:32:49 -04:00
# NoValue
Emitted when using the result of a function that never returns.
```php
2020-03-20 19:13:46 -04:00
<?php
2020-03-19 12:32:49 -04:00
/**
* @return never-returns
*/
function foo() : void {
exit();
}
$a = foo();
```