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

ProductionRequest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
dl 0
loc 15
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A api_endpoint() 0 3 1
A ui_endpoint() 0 3 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