Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 178 Bytes

NoValue.md

File metadata and controls

16 lines (12 loc) · 178 Bytes

NoValue

Emitted when using the result of a function that never returns.

<?php

/**
 * @return never-returns
 */
function foo() : void {
    exit();
}

$a = foo();