File tree 1 file changed +3
-3
lines changed
src/Standards/Generic/Docs/WhiteSpace
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
<documentation title =" Increment Decrement Spacing" >
2
2
<standard >
3
3
<![CDATA[
4
- There should be no whitespaces between variables and increment/decrement operators.
4
+ There should be no whitespace between variables and increment/decrement operators.
5
5
]]>
6
6
</standard >
7
7
<code_comparison >
8
- <code title =" Valid: No whitespaces between variables and increment/decrement operators." >
8
+ <code title =" Valid: No whitespace between variables and increment/decrement operators." >
9
9
<![CDATA[
10
10
++<em></em>$i;
11
11
--<em></em>$i['key']['id'];
12
12
ClassName::$prop<em></em>++;
13
13
$obj->prop<em></em>--;
14
14
]]>
15
15
</code >
16
- <code title =" Invalid: One or more whitespaces between variables and increment/decrement operators." >
16
+ <code title =" Invalid: Whitespace between variables and increment/decrement operators." >
17
17
<![CDATA[
18
18
++<em> </em>$i;
19
19
--<em> </em>$i['key']['id'];
You can’t perform that action at this time.
0 commit comments