Completed
Push — master ( b7118a...c3970f )
by John
01:10
created

Base.body()   A

Complexity

Conditions 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %
Metric Value
cc 1
dl 0
loc 3
rs 10
1
module RingCentralSdk::REST::Request
2
  class Base
3
    def method()
4
      return 'get'
5
    end
6
    def url()
7
      return ''
8
    end
9
    def content_type()
10
      return ''
11
    end
12
    def body()
13
      return ''
14
    end
15
  end
16
end