# frozen_string_literal: true module PhoneSites class BaseResponse def perform(url, method = 'get', options = {}) Faraday.public_send(method, url, options) end end end