mirror of
https://github.com/danog/psalm.git
synced 2024-12-03 10:07:52 +01:00
14 lines
244 B
Markdown
14 lines
244 B
Markdown
# PossiblyUnusedMethod
|
|
|
|
Emitted when `--find-dead-code` is turned on and Psalm cannot find any calls to a given class method
|
|
|
|
```php
|
|
<?php
|
|
|
|
class A {
|
|
public function foo() : void {}
|
|
public function bar() : void {}
|
|
}
|
|
(new A)->foo();
|
|
```
|