Conditions | 4 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
44 | public function getValue($endpoint, $key) |
||
45 | { |
||
46 | if (isset($this->endpoints['endpoints'][$endpoint]) |
||
47 | && isset($this->endpoints['endpoints'][$endpoint][$key]) |
||
48 | ) { |
||
49 | return $this->endpoints['endpoints'][$endpoint][$key]; |
||
50 | } |
||
51 | |||
52 | if (isset($this->endpoints[$key])) { |
||
53 | return $this->endpoints[$key]; |
||
54 | } |
||
55 | |||
56 | return null; |
||
57 | } |
||
58 | |||
70 |