| Conditions | 2 |
| Paths | 2 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function get($endpoint) |
||
| 50 | { |
||
| 51 | $endpoint = "\\Choccybiccy\\HumanApi\\Endpoint\\" . ucfirst($endpoint); |
||
| 52 | if (class_exists($endpoint)) { |
||
| 53 | /** @var Endpoint $endpoint */ |
||
| 54 | $endpoint = new $endpoint; |
||
| 55 | $endpoint->setAccessToken($this->accessToken); |
||
| 56 | |||
| 57 | return $endpoint; |
||
| 58 | |||
| 59 | } |
||
| 60 | } |
||
| 61 | } |
||
| 62 |