exportController = $exportController; } public function __invoke(): void { if (empty($_POST['selected_tbl'])) { $this->response->setRequestStatus(false); $this->response->addJSON('message', __('No table selected.')); return; } ($this->exportController)(); } }