Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
14 | public function __construct( |
||
15 | string $apiUrl, |
||
16 | string $apiKey, |
||
17 | string $apiSecret, |
||
18 | ?string $clientUsername = null, |
||
19 | ?string $appName = null, |
||
20 | ?string $channel = 'WEB' |
||
21 | ) { |
||
22 | $this->apiUrl = $apiUrl; |
||
23 | $this->apiKey = $apiKey; |
||
24 | $this->apiSecret = $apiSecret; |
||
25 | $this->clientUsername = $clientUsername; |
||
26 | $this->channel = $channel; |
||
27 | $this->appName = $appName; |
||
28 | } |
||
77 |