expertiza/expertiza

View on GitHub
app/models/self_review_response_map.rb

Summary

Maintainability
A
0 mins
Test Coverage
B
80%

Do not prefix reader method names with get_.
Open

  def get_title

This cop makes sure that accessor methods are named properly.

Example:

# bad
def set_attribute(value)
end

# good
def attribute=(value)
end

# bad
def get_attribute
end

# good
def attribute
end

There are no issues that match your filters.

Category
Status