normalization = $normalization; } public function __invoke(ServerRequest $request): void { $num_fields = min(4096, intval($_POST['numFields'])); $html = $this->normalization->getHtmlForCreateNewColumn($num_fields, $GLOBALS['db'], $GLOBALS['table']); $html .= Url::getHiddenInputs($GLOBALS['db'], $GLOBALS['table']); $this->response->addHTML($html); } }