Skip to content

Commit

Permalink
minor #4542 Update conventions.rst (csuarez)
Browse files Browse the repository at this point in the history
This PR was submitted for the 2.6 branch but it was merged into the 2.3 branch instead (closes #4542).

Discussion
----------

Update conventions.rst

The ``trigger_error`` call seems to be written in one line:  https://github.com/symfony/symfony/pull/12671/files

Commits
-------

3d75f6a Update conventions.rst
  • Loading branch information
wouterj committed Nov 29, 2014
2 parents 5aaba1e + 3d75f6a commit 7b3500c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions contributing/code/conventions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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);

0 comments on commit 7b3500c

Please sign in to comment.