Completed
Pull Request — master (#17)
by
unknown
01:55
created

ProductionRequest.ui_endpoint()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
1
module WePay
2
  class ProductionRequest
3
    include BaseRequest
4
5
    private
6
7
    def api_endpoint
8
      ::WePay::Client::PRODUCTION_API_ENDPOINT
9
    end
10
11
    # :nocov:
12
    def ui_endpoint
13
      ::WePay::Client::PRODUCTION_UI_ENDPOINT
14
    end
15
    # :nocov:
16
  end
17
end
18