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.
1 parent ef30569 commit 2f4d218Copy full SHA for 2f4d218
contributing/code/standards.rst
@@ -178,15 +178,13 @@ instead of:
178
179
.. code-block:: php
180
181
- if (1 == $integerExpected) {
+ // use
182
+ if (1 === $integerExpected) {
183
// ...
184
}
185
-it should be:
186
-
187
-.. code-block:: php
188
189
- if (1 === $integerExpected) {
+ // instead of
+ if (1 == $integerExpected) {
190
191
192
0 commit comments