mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
244 B
244 B
PossiblyUnusedMethod
Emitted when --find-dead-code
is turned on and Psalm cannot find any calls to a given class method
<?php
class A {
public function foo() : void {}
public function bar() : void {}
}
(new A)->foo();