Skip to content

Commit 2ab648b

Browse files
authored
Merge pull request #181 from dingo-d/documentation/PSR12-control-structures-boolean-operator-placement
[Documentation] PSR12 - Boolean Operator Placement
2 parents 5207a3e + 787fb83 commit 2ab648b

File tree

1 file changed

+59
-0
lines changed

1 file changed

+59
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
<documentation title="Boolean Operator Placement">
2+
<standard>
3+
<![CDATA[
4+
Boolean operators between conditions in control structures must always be at the beginning or at the end of the line, not a mix of both.
5+
6+
This rule applies to if/else conditions, while loops and switch/match statements.
7+
]]>
8+
</standard>
9+
<code_comparison>
10+
<code title="Valid: Boolean operator between conditions consistently at the beginning of the line.">
11+
<![CDATA[
12+
if (
13+
$expr1
14+
&& $expr2
15+
&& ($expr3
16+
|| $expr4)
17+
&& $expr5
18+
) {
19+
// if body.
20+
}
21+
]]>
22+
</code>
23+
<code title="Invalid: Mix of boolean operators at the beginning and the end of the line.">
24+
<![CDATA[
25+
if (
26+
$expr1 &&
27+
($expr2 || $expr3)
28+
&& $expr4
29+
) {
30+
// if body.
31+
}
32+
]]>
33+
</code>
34+
</code_comparison>
35+
<code_comparison>
36+
<code title="Valid: Boolean operator between conditions consistently at the end of the line.">
37+
<![CDATA[
38+
if (
39+
$expr1 ||
40+
($expr2 || $expr3) &&
41+
$expr4
42+
) {
43+
// if body.
44+
}
45+
]]>
46+
</code>
47+
<code title="Invalid: Mix of boolean operators at the beginning and the end of the line.">
48+
<![CDATA[
49+
match (
50+
$expr1
51+
&& $expr2 ||
52+
$expr3
53+
) {
54+
// structure body.
55+
};
56+
]]>
57+
</code>
58+
</code_comparison>
59+
</documentation>

0 commit comments

Comments
 (0)