<slide>
<image filename="php7trans-200.png" />
<break/>

<blurb>✔ Void return type</blurb>
<example><![CDATA[
function should_return_nothing(): void
{
    // Fatal error: A void function must not return a value
    return new Elephpant;
}
]]></example>
<blurb>Parser stage, so no Error/Exception</blurb>

</slide>
