Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 388 Bytes

UnusedMethodCall.md

File metadata and controls

22 lines (16 loc) · 388 Bytes

UnusedMethodCall

Emitted when --find-dead-code is turned on and Psalm finds a method call whose return value is not used anywhere

<?php

final class A {
    private string $foo;

    public function __construct(string $foo) {
        $this->foo = $foo;
    }

    public function getFoo() : string {
        return $this->foo;
    }
}

$a = new A("hello");
$a->getFoo();