appName = $appName; $this->controllerName = $controllerName; $this->actionName = $actionName; } public function collect(Request $request, Response $response, ?\Throwable $exception = null): void { $this->data = [ 'appName' => $this->appName, 'controllerName' => $this->controllerName, 'actionName' => $this->actionName, ]; } public function getName(): string { return 'router'; } }