mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
15 lines
250 B
Markdown
15 lines
250 B
Markdown
# PropertyNotSetInConstructor
|
||
|
||
Emitted when a non-null property without a default value is declared but not set in the class’s constructor
|
||
|
||
```php
|
||
<?php
|
||
|
||
class A {
|
||
/** @var string */
|
||
public $foo;
|
||
|
||
public function __construct() {}
|
||
}
|
||
```
|