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