Properties that are not initialized in the constructor should be annotated as nullable.
class User {
/** @var string */ // <-- Property is not annotated correctly. Add null type
private $name;
public function getName() { }
public function setName(string $name) { }
}