| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | public function __construct( |
||
| 17 | string $clientKey, |
||
| 18 | string $apiUrl = self::DEFAULT_API_URL, |
||
| 19 | ?string $languagePool = null, |
||
| 20 | ?string $callbackUrl = null, |
||
| 21 | ?int $softId = self::DEFAULT_SOFT_ID |
||
| 22 | ) { |
||
| 23 | $this->apiKey = $clientKey; |
||
| 24 | $this->apiUrl = $apiUrl; |
||
| 25 | $this->languagePool = $languagePool; |
||
| 26 | $this->callbackUrl = $callbackUrl; |
||
| 27 | $this->softId = $softId; |
||
| 28 | } |
||
| 65 |