advisor = $advisor; } public function index(): void { $scripts = $this->response->getHeader()->getScripts(); $scripts->addFile('server/status/advisor.js'); $data = ''; if ($this->data->dataLoaded) { $data = json_encode($this->advisor->run()); } $this->response->addHTML($this->template->render('server/status/advisor/index', [ 'data' => $data, ])); } }