Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | class ClientFactory |
||
14 | { |
||
15 | /** |
||
16 | * @static array |
||
17 | */ |
||
18 | const ENDPOINTS = [ |
||
19 | 'soap' => 'https://ws1.webservices.nl/soap/', |
||
20 | 'soap_doclit' => 'https://ws1.webservices.nl/soap_doclit/', |
||
21 | ]; |
||
22 | |||
23 | /** |
||
24 | * @param string $type |
||
25 | * @param array $credentials |
||
26 | * |
||
27 | * @return Client |
||
28 | * @throws AnnotationException |
||
29 | */ |
||
30 | 4 | public static function createClient(string $type, array $credentials) |
|
48 |