Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php // Copyright ⓒ 2018 Magneds IP B.V. - All Rights Reserved |
||
26 | public function __construct(string $apiKey, ClientInterface $client = null) |
||
27 | { |
||
28 | $this->apiKey = $apiKey; |
||
29 | |||
30 | if (is_null($client)) { |
||
31 | $client = new Client([ |
||
32 | 'base_uri' => 'https://api.lokalise.co/api/', |
||
33 | ]); |
||
34 | } |
||
35 | |||
36 | $this->client = $client; |
||
37 | } |
||
64 |