| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 27 | public function render(): void |
||
| 28 | { |
||
| 29 | $apis = $this->apiDecider->getApis(); |
||
| 30 | |||
| 31 | /** @var Template $template */ |
||
| 32 | $template = $this->getTemplate(); |
||
| 33 | $template->add('apis', $this->groupApis($apis)); |
||
| 34 | $template->setFile(__DIR__ . '/api_listing.latte'); |
||
| 35 | $template->render(); |
||
| 36 | } |
||
| 37 | |||
| 60 |