Fresh code drop

Warn When a Return Value Is Ignored

PHP

Use #[NoDiscard] when callers should not accidentally ignore an important result.

PHP
CodeSnap // free canvas

Warn When a Return Value Is Ignored

#[\NoDiscard]
function saveOrder(Order $order): bool
{
    return $order->save();
}

$saved = saveOrder($order);

Turn your code into a post.Five templates are free—no account needed.

Remix this snap