request; } final public function go(array $get): void { $request = new Request(Map::fromArray($get)); $controller = new static($request); echo ""; $head = $controller->getHead(); $body = $controller->render(); echo (string)$head; echo (string)$body; } }