rspec/rules/S1172/php/rule.adoc

34 lines
553 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
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.
2020-06-30 12:47:33 +02:00
----
class C extends B {
function doSomething($a, $b) { // no issue reported on $b
compute($a);
}
}
----
include::../see.adoc[]