From 7c1c2f77f7034f4dec924a8f6fe10862997b48bb 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 48afc3af7..29a3f6f61 100644 --- a/stubs/Stringable.php +++ b/stubs/Stringable.php @@ -2,5 +2,6 @@ interface Stringable { - function __toString() : string; + /** @return string */ + function __toString(); }