From 438bcc6ab7e42291beec9e0d274e2ee49eff76ac Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Thu, 29 Oct 2020 16:14:16 -0400 Subject: [PATCH] Use softer return --- stubs/Stringable.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stubs/Stringable.php b/stubs/Stringable.php index 48afc3af7ba..29a3f6f618f 100644 --- a/stubs/Stringable.php +++ b/stubs/Stringable.php @@ -2,5 +2,6 @@ interface Stringable { - function __toString() : string; + /** @return string */ + function __toString(); }