rspec/rules/S1126/plsql/rule.adoc
2020-06-30 17:16:12 +02:00

18 lines
188 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
----
IF expression THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
----
== Compliant Solution
----
RETURN expression;
----