rspec/rules/S1172/php/rule.adoc
Alban Auzeill 2c306d110e Fix code block ambiguity with old header style
Ensure blank line before list and clean the one leading space
2020-06-30 17:16:12 +02:00

34 lines
553 B
Plaintext

Unused parameters are misleading. Whatever the value passed to such parameters is, the behavior will be the same.
== Noncompliant Code Example
----
function doSomething($a, $b) { // "$a" is unused
return compute($b);
}
----
== Compliant Solution
----
function doSomething($b) {
return compute($b);
}
----
== Exceptions
Functions in classes that override a class or implement interfaces are ignored.
----
class C extends B {
function doSomething($a, $b) { // no issue reported on $b
compute($a);
}
}
----
include::../see.adoc[]