From ffbf363ac57d65b85d94b21fd9e8991292545493 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Su=C3=A1rez=20Ortega?= Date: Sat, 29 Nov 2014 14:21:27 +0100 Subject: [PATCH] Update conventions.rst The ``trigger_error``call seems to be written in one line: https://github.com/symfony/symfony/pull/12671/files --- contributing/code/conventions.rst | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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);