1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-22 05:41:20 +01:00

Fix return type mismatch

This commit is contained in:
Matthew Brown 2017-12-31 20:42:06 -05:00
parent b46011b3a5
commit 38e48a8c1c

View File

@ -121,7 +121,7 @@ class A {
class B extends A { class B extends A {
/** @return string */ /** @return string */
public function foo() { public function foo() {
return true; return "hello";
} }
} }
``` ```