19 lines
197 B
Plaintext
19 lines
197 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if ($x < 0) {
|
||
|
new foo; // Noncompliant
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
$var = NULL;
|
||
|
if ($x < 0) {
|
||
|
$var = new foo;
|
||
|
}
|
||
|
----
|