Skip to content
Closed

v8 to 9 #2102

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions development/coding-standards/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()'
),
Expand Down
Loading