mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
243 B
243 B
PropertyNotSetInConstructor
Emitted when a non-null property without a default value is declared but not set in the class’s constructor
class A {
/** @var string */
public $foo;
public function __construct() {}
}