1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-21 21:31:13 +01:00

Use softer return

This commit is contained in:
Matt Brown 2020-10-29 16:14:16 -04:00
parent 2e95d1fb98
commit 438bcc6ab7

View File

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