pdt icon indicating copy to clipboard operation
pdt copied to clipboard

Null Coalescing Assignment Operator: Variable is never used

Open mlocati opened this issue 1 year ago • 0 comments

Consider this code:

function foo(): Bar
{
    static $baz;

    return $baz ??= new Bar();
}

PDT signals that $baz is never used:

immagine

mlocati avatar Feb 08 '24 13:02 mlocati