diff --git a/contributing/code/conventions.rst b/contributing/code/conventions.rst index 67962aebc00..6f102e8f6a2 100644 --- a/contributing/code/conventions.rst +++ b/contributing/code/conventions.rst @@ -103,7 +103,4 @@ A PHP ``E_USER_DEPRECATED`` error must also be triggered to help people with the migration starting one or two minor versions before the version where the feature will be removed (depending on the criticality of the removal):: - trigger_error( - 'XXX() is deprecated since version 2.X and will be removed in 2.Y. Use XXX instead.', - E_USER_DEPRECATED - ); + trigger_error('XXX() is deprecated since version 2.X and will be removed in 2.Y. Use XXX instead.', E_USER_DEPRECATED);