31 lines
307 B
Plaintext
31 lines
307 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if ($x > 0) // Noncompliant
|
||
|
doTheThing();
|
||
|
doTheOtherThing();
|
||
|
|
||
|
foo();
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if ($x > 0) {
|
||
|
doTheThing();
|
||
|
doTheOtherThing();
|
||
|
}
|
||
|
|
||
|
foo();
|
||
|
----
|
||
|
or
|
||
|
----
|
||
|
if ($x > 0)
|
||
|
doTheThing();
|
||
|
doTheOtherThing();
|
||
|
|
||
|
foo();
|
||
|
----
|