Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
35 | public function current(): ResponseInterface |
||
36 | { |
||
37 | $this->init(); |
||
38 | |||
39 | $this->outputLogger->output(Ansi::clear(), true); |
||
40 | $this->outputLogger->output(Ansi::sgr(__METHOD__, [Sgr::BOLD]), true); |
||
41 | |||
42 | $url = \sprintf('%s%s/clients/current', Config::string('APP_API_URL'), Config::string('APP_API_VERSION')); |
||
43 | |||
44 | $this->handleApiCall($this->jwt, $url, Method::GET, ''); |
||
45 | |||
46 | return new Response(); |
||
47 | } |
||
49 |