| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function setEnvironment( |
||
| 22 | string $apiUrl, |
||
| 23 | string $apiKey, |
||
| 24 | string $apiSecret, |
||
| 25 | ?string $clientUsername = null, |
||
| 26 | ?string $appName = null, |
||
| 27 | ?string $channel = null |
||
| 28 | ) { |
||
| 29 | $this->environment = new Environment($apiUrl, $apiKey, $apiSecret, $clientUsername, $appName, $channel); |
||
| 30 | return $this; |
||
| 31 | } |
||
| 58 |