rspec/rules/S1542/php/rule.adoc

18 lines
168 B
Plaintext
Raw Normal View History

2020-06-30 12:47:33 +02:00
include::../description.adoc[]
== Noncompliant Code Example
----
function MyFunc() {
// ...
}
----
== Compliant Solution
----
function myFunc() {
// ...
}
----