mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
18 lines
238 B
Markdown
18 lines
238 B
Markdown
# DeprecatedMethod
|
||
|
||
Emitted when calling a deprecated method on a given class:
|
||
|
||
```php
|
||
<?php
|
||
|
||
class A {
|
||
/** @deprecated */
|
||
public function foo() : void {}
|
||
}
|
||
(new A())->foo();
|
||
```
|
||
|
||
## How to fix
|
||
|
||
Don’t use the deprecated method.
|