Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 292 Bytes

PossiblyUnusedProperty.md

File metadata and controls

18 lines (13 loc) · 292 Bytes

PossiblyUnusedProperty

Emitted when --find-dead-code is turned on and Psalm cannot find any uses of a particular public/protected property

<?php

class A {
    /** @var string|null */
    public $foo;

    /** @var int|null */
    public $bar;
}

$a = new A();
echo $a->foo;