Add missing brackets around parameters in method definitions

This commit is contained in:
Frederic Merizen 2018-03-20 17:47:37 +01:00
parent 9e19c78b48
commit 2fa88a432b
34 changed files with 64 additions and 64 deletions

View file

@ -1,5 +1,5 @@
class ClamavService
def self.safe_file? file_path
def self.safe_file?(file_path)
if Rails.env == 'development'
return CLAMAV[:response] if CLAMAV[:mock?]
end