eclipse-pdt / pdt

PHP Development Tools project (PDT)
https://eclipse.org/pdt
Eclipse Public License 2.0
188 stars 46 forks source link

Null Coalescing Assignment Operator: Variable is never used #268

Open mlocati opened 5 months ago

mlocati commented 5 months ago

Consider this code:

function foo(): Bar
{
    static $baz;

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

PDT signals that $baz is never used:

immagine