class UpdatePetitionStatisticsJob < ApplicationJob - UpdatePetitionStatisticsJob has no descriptive comment
queue_as :low_priority
def perform(petition) - UpdatePetitionStatisticsJob#perform doesn't depend on instance state (maybe move it to another class?)
petition.statistics.refresh!
end
end