appName = $appName; $this->request = $request; } /** * Index page - simple render without TemplateResponse * * @NoAdminRequired * @NoCSRFRequired */ public function index(): void { echo ''; echo ''; echo '
'; echo ''; echo 'App Name: ' . htmlspecialchars($this->appName) . '
'; echo 'Request Path: ' . htmlspecialchars($this->request->getPathInfo()) . '
'; echo 'Status: Controller properly initialized with protected property visibility.
'; echo '✅ Routing test successful!
'; echo 'The app is now working correctly. You can:
'; echo '