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
160160
161161* Declare public methods first, then protected ones and finally private ones.
162162 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
164164 to increase readability;
165165
166166* Declare all the arguments on the same line as the method/function name, no
@@ -169,11 +169,11 @@ Structure
169169* Use parentheses when instantiating classes regardless of the number of
170170 arguments the constructor has;
171171
172- * Exception and error message strings should be concatenated using :phpfunction: `sprintf `.
172+ * Exception and error message strings must be concatenated using :phpfunction: `sprintf `;
173173
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
175175 switched to opt-in via ``@ `` operator.
176- Read more at :ref: `contributing-code-conventions-deprecations `;
176+ Read more at :ref: `contributing-code-conventions-deprecations `.
177177
178178Naming Conventions
179179------------------
You can’t perform that action at this time.
0 commit comments