Skip to content

Commit 2f4d218

Browse files
committed
Mixed both snippets in just one.
1 parent ef30569 commit 2f4d218

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

contributing/code/standards.rst

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,13 @@ instead of:
178178

179179
.. code-block:: php
180180
181-
if (1 == $integerExpected) {
181+
// use
182+
if (1 === $integerExpected) {
182183
// ...
183184
}
184185
185-
it should be:
186-
187-
.. code-block:: php
188-
189-
if (1 === $integerExpected) {
186+
// instead of
187+
if (1 == $integerExpected) {
190188
// ...
191189
}
192190

0 commit comments

Comments
 (0)