Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 3 | ||
Bugs | 0 | Features | 2 |
1 | <?php |
||
31 | 1 | public function __construct($affiliateId, $country, $language = null, \Careerjet_API $api = null) |
|
32 | { |
||
33 | 1 | $this->affiliateId = $affiliateId; |
|
34 | 1 | $this->country = $country; |
|
35 | 1 | $this->language = $language; |
|
36 | |||
37 | 1 | $this->api = !empty($api) ? $api : new \Careerjet_API(Locale::byCountryAndLanguage($country, $language)); |
|
38 | 1 | } |
|
39 | |||
67 |