From 2e5831a632e39e52810a16ad86163e9ab08ed255 Mon Sep 17 00:00:00 2001 From: Takashi Kanemoto Date: Wed, 15 Oct 2025 23:28:03 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20clarify=20deprecation=20m?= =?UTF-8?q?essages=20for=20BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Symfony/Bundle/Test/ApiTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/Test/ApiTestCase.php b/src/Symfony/Bundle/Test/ApiTestCase.php index 4546d84da72..211ed631528 100644 --- a/src/Symfony/Bundle/Test/ApiTestCase.php +++ b/src/Symfony/Bundle/Test/ApiTestCase.php @@ -50,7 +50,7 @@ protected static function createClient(array $kernelOptions = [], array $default trigger_deprecation( 'api-platform/symfony', '4.1.0', - 'In API Platform 5.0, the kernel will not always be booted when a new client is created (see https://github.com/api-platform/core/issues/6971).', + 'Currently, the kernel will always be booted when a new client is created, but in API Platform 5.0, it will not be booted unless you set `static::$alwaysBootKernel` to `true` (the default will be `false`). See https://github.com/api-platform/core/issues/6971 for more information.', ); }