File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ Structure
160
160
161
161
* Declare public methods first, then protected ones and finally private ones.
162
162
The exceptions to this rule are the class constructor and the ``setUp `` and
163
- ``tearDown `` methods of PHPUnit tests, which should always be the first methods
163
+ ``tearDown `` methods of PHPUnit tests, which must always be the first methods
164
164
to increase readability;
165
165
166
166
* Declare all the arguments on the same line as the method/function name, no
@@ -169,11 +169,11 @@ Structure
169
169
* Use parentheses when instantiating classes regardless of the number of
170
170
arguments the constructor has;
171
171
172
- * Exception and error message strings should be concatenated using :phpfunction: `sprintf `.
172
+ * Exception and error message strings must be concatenated using :phpfunction: `sprintf `;
173
173
174
- * Calls to :phpfunction: `trigger_error ` with type ``E_USER_DEPRECATED `` should be
174
+ * Calls to :phpfunction: `trigger_error ` with type ``E_USER_DEPRECATED `` must be
175
175
switched to opt-in via ``@ `` operator.
176
- Read more at :ref: `contributing-code-conventions-deprecations `;
176
+ Read more at :ref: `contributing-code-conventions-deprecations `.
177
177
178
178
Naming Conventions
179
179
------------------
You can’t perform that action at this time.
0 commit comments