normalization = $normalization; } public function __invoke(ServerRequest $request): void { $partialDependencies = json_decode($_POST['pd'], true); $tablesName = json_decode($_POST['newTablesName']); $res = $this->normalization->createNewTablesFor2NF( $partialDependencies, $tablesName, $GLOBALS['table'], $GLOBALS['db'] ); $this->response->addJSON($res); } }