rspec/rules/S1793/php/rule.adoc
2022-02-04 16:28:24 +00:00

41 lines
557 B
Plaintext

According to the PSR2 coding standard:
____
The keyword ``++elseif++`` SHOULD be used instead of ``++else if++`` so that all control keywords look like single words.
____
== Noncompliant Code Example
[source,php]
----
if ($expr1) {
...
} else if ($expr2) {
...
} else {...}
----
== Compliant Solution
[source,php]
----
if ($expr1) {
...
} elseif ($expr2) {
...
} else {...}
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
endif::env-github,rspecator-view[]