mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
60ac109c01
* Add RedundantPropertyInitializationCheck * add documentation for RedundantPropertyInitializationCheck (#4734) Co-authored-by: orklah <orklah@users.noreply.github.com>
434 B
434 B
RedundantPropertyInitializationCheck
Emitted when checking isset()
on a non-nullable property. This issue indicate a redundant check for projects that initialize their properties in constructor.
<?php
class A {
public string $bar;
public function getBar() : string {
if (isset($this->bar)) {
return $this->bar;
}
return "hello";
}
}