From bbd368c5cd4b7f626523ddee3d7c6ba9052fd6a0 Mon Sep 17 00:00:00 2001 From: Takuya Aramaki Date: Mon, 1 Dec 2025 00:37:57 +0900 Subject: [PATCH] Fix sample code in migration85.new-features --- appendices/migration85/new-features.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appendices/migration85/new-features.xml b/appendices/migration85/new-features.xml index 5f2424d70af2..9acd268ef54b 100644 --- a/appendices/migration85/new-features.xml +++ b/appendices/migration85/new-features.xml @@ -68,7 +68,7 @@ print $result . PHP_EOL; // Prints "11" #[\NoDiscard] function concat(string $a, string $b): string { - return a + b; + return $a . $b; } // Warning: The return value of function concat() should either be used or