From 7f843567ec216b28dafc4331dfc93beeb3f30317 Mon Sep 17 00:00:00 2001 From: ADmad Date: Sat, 1 Nov 2025 14:09:10 +0530 Subject: [PATCH 1/2] Update migration guide regarding InstanceConfigTrait::deleteConfig() --- en/appendices/5-3-migration-guide.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/en/appendices/5-3-migration-guide.rst b/en/appendices/5-3-migration-guide.rst index 3ab74a5640..e505588a63 100644 --- a/en/appendices/5-3-migration-guide.rst +++ b/en/appendices/5-3-migration-guide.rst @@ -16,6 +16,12 @@ If you are not running on **PHP 8.2 or higher**, you will need to upgrade PHP be Behavior Changes ================ +Core +---- + +- ``InstanceConfigTrait::deleteConfig()`` has been added. For classes using this + trait, you can now use ``$this->deleteConfig('key')`` instead of ``$this->setConfig('key', null)`` + Database -------- From 53047dacd950214928c0fe84a81249625e2c79f4 Mon Sep 17 00:00:00 2001 From: ADmad Date: Sat, 1 Nov 2025 22:28:57 +0530 Subject: [PATCH 2/2] Update grammar --- en/appendices/5-3-migration-guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/appendices/5-3-migration-guide.rst b/en/appendices/5-3-migration-guide.rst index e505588a63..fd9fe7a863 100644 --- a/en/appendices/5-3-migration-guide.rst +++ b/en/appendices/5-3-migration-guide.rst @@ -19,7 +19,7 @@ Behavior Changes Core ---- -- ``InstanceConfigTrait::deleteConfig()`` has been added. For classes using this +- ``InstanceConfigTrait::deleteConfig()`` was added. For classes using this trait, you can now use ``$this->deleteConfig('key')`` instead of ``$this->setConfig('key', null)`` Database