16 lines
201 B
Plaintext
16 lines
201 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
function compute($a, $a, $c) { // Noncompliant
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
function compute($a, $b, $c) { // Compliant
|
||
|
}
|
||
|
----
|