We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c2165d1 + 336996e commit f43cae1Copy full SHA for f43cae1
contributing/code/standards.rst
@@ -179,6 +179,12 @@ Structure
179
180
* Exception and error message strings must be concatenated using :phpfunction:`sprintf`;
181
182
+* Exception and error messages must not contain backticks (e.g. 'The \`foo\` option ...'),
183
+ even when referring to a technical element (such as a method or variable name).
184
+ Double quotes must be used at all time (e.g. 'The "foo" option ...'),;
185
+
186
+* Exception and error messages must start with a capital letter and finish with a dot ``.``;
187
188
* Do not use ``else``, ``elseif``, ``break`` after ``if`` and ``case`` conditions
189
which return or throw something;
190
0 commit comments