mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
21 lines
266 B
Markdown
21 lines
266 B
Markdown
# DeprecatedProperty
|
||
|
||
Emitted when getting/setting a deprecated property of a given class
|
||
|
||
```php
|
||
<?php
|
||
|
||
class A {
|
||
/**
|
||
* @deprecated
|
||
* @var ?string
|
||
*/
|
||
public $foo;
|
||
}
|
||
(new A())->foo = 5;
|
||
```
|
||
|
||
## How to fix
|
||
|
||
Don’t use the deprecated property.
|