rspec/rules/S1788/php/rule.adoc

18 lines
376 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
function makeyogurt($type = "acidophilus", $flavor){...} // Noncompliant
makeyogurt("raspberry")}} // Runtime error: Missing argument 2 in call to makeyogurt()
----
== Compliant Solution
----
function makeyogurt($flavor, $type = "acidophilus", ){...}
makeyogurt("raspberry")}} // Works as expected
----