Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
68 | 2 | public function getApiUrl($jobId, $method = 'GET') |
|
69 | { |
||
70 | return |
||
71 | 2 | 'http'.(($this->config['ssl']) ? 's' : '').'://'. |
|
72 | 2 | $this->config['host'].':'.$this->config['port'].'/api/'. |
|
73 | 2 | $this->config['api_version'].'/job/'.$jobId.'/'. |
|
74 | 2 | ((strcasecmp($method, 'get') == 0) ? 'run' : 'executions'); |
|
75 | } |
||
76 | } |
||
77 |