mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
18 lines
292 B
Markdown
18 lines
292 B
Markdown
# PossiblyNullPropertyAssignmentValue
|
|
|
|
Emitted when trying to assign a value that may be null to a property that only takes non-null values.
|
|
|
|
```php
|
|
<?php
|
|
|
|
class A {
|
|
/** @var string */
|
|
public $foo = "bar";
|
|
}
|
|
|
|
function assignToA(?string $s) {
|
|
$a = new A();
|
|
$a->foo = $s;
|
|
}
|
|
```
|