summaryrefslogtreecommitdiff
path: root/fake-service/lib/pixelated_service/contacts_sorter.rb
blob: e559205d768a495685805a9b572791f3c46d91de (plain)
1
2
3
4
5
6
7
8

module PixelatedService
  class ContactsSorter
    def restrict(input)
      input.sort
    end
  end
end