Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | public function getEndpoint(string $name, string $version): Endpoint |
||
28 | { |
||
29 | switch ($version) { |
||
30 | case "1": |
||
|
|||
31 | switch (strtolower($name)) { |
||
32 | case "phonenumbers": |
||
33 | return new PhoneNumbers($this->geoPhone); |
||
34 | default: |
||
35 | throw new UnknownEndpointException("Endpoint: $name not supported"); |
||
36 | } |
||
37 | default: |
||
38 | throw new UnknownEndpointException("Version: $version not support"); |
||
39 | } |
||
40 | } |
||
41 | |||
51 |