Return Statement Rules

return_statement_300

phase_4 error indent

This rule checks the indentation of the return keyword.

Violation

return my_value;
end function;

Fix

  return my_value;
end function;

return_statement_500

phase_6 error case case_keyword

This rule checks the return keyword has proper case.

Refer to Configuring Uppercase and Lowercase Rules for more information.

Violation

RETURN my_value;

Fix

return my_value;