1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Implied well enough

This commit is contained in:
David Heinemeier Hansson 2017-07-01 12:10:22 +02:00
parent 4038bda96b
commit ea429eaa14

View file

@ -28,11 +28,11 @@ class ActiveFile::Site
end
def copy(from_key:, to_key:)
def copy(from:, to:)
raise NotImplementedError
end
def move(from_key:, to_key:)
def move(from:, to:)
raise NotImplementedError
end
end