From 3a671b9472e0b0b367561e63dd8c83c8146847cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Viguier?= <16720275+jf-viguier@users.noreply.github.com> Date: Fri, 20 Feb 2026 15:51:05 +0100 Subject: [PATCH] v8 to 9 --- development/coding-standards/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/development/coding-standards/_index.md b/development/coding-standards/_index.md index ed397c1b33..8db0ab9540 100644 --- a/development/coding-standards/_index.md +++ b/development/coding-standards/_index.md @@ -105,7 +105,7 @@ namespace PrestaShop\Awesome\Path; @trigger_error( sprintf( - '%s is deprecated since version 8.0 and will be removed in the next major version.', + '%s is deprecated since version 9.0 and will be removed in the next major version.', MyClass::class ), E_USER_DEPRECATED @@ -123,7 +123,7 @@ class MyClass { @trigger_error( sprintf( - '%s is deprecated since version 8.0. Use %s instead.', + '%s is deprecated since version 9.0. Use %s instead.', __METHOD__, AnotherClass::class . '::someNewMethod()' ),