Total Complexity | 2 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class ClientFactory |
||
23 | { |
||
24 | /** |
||
25 | * @param string $apiKey |
||
26 | * @param string $workspace |
||
27 | * @param array $options |
||
28 | * @return Client |
||
29 | */ |
||
30 | 1 | public function build(string $apiKey, string $workspace, $options = array()): Client |
|
49 | } |
||
50 | |||
51 | /** |
||
52 | * @param OptionsResolver $resolver |
||
53 | * @return void |
||
54 | */ |
||
55 | 1 | public function configureOptions(OptionsResolver $resolver) |
|
64 |