Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
31 | public function __construct($company, $username, $password, $sender) |
||
32 | { |
||
33 | $this->company = $company; |
||
34 | $this->username = $username; |
||
35 | $this->password = $password; |
||
36 | $this->sender = $sender; |
||
37 | |||
38 | $this->httpClient = new HttpClient([ |
||
39 | 'base_uri' => $this->apiUrl, |
||
40 | 'timeout' => 2.0, |
||
41 | ]); |
||
42 | } |
||
43 | |||
76 |