1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00

Use softer return

This commit is contained in:
Matt Brown 2020-10-29 16:14:16 -04:00 committed by Daniil Gentili
parent 2c2e171441
commit 7c1c2f77f7
Signed by: danog
GPG Key ID: 8C1BE3B34B230CA7

View File

@ -2,5 +2,6 @@
interface Stringable
{
function __toString() : string;
/** @return string */
function __toString();
}