workflowService = $workflowService; } public function showSettingsForm() { $workflows = $this->workflowService->getWorkflows(); return $this->render('settings.php', [ 'workflows' => $workflows ]); } public function saveWorkflows() { $deckId = $_POST['deckId']; $sourceStackId = $_POST['sourceStack']; $targetStackId = $_POST['targetStack']; $this->workflowService->saveWorkflows($deckId, $sourceStackId, $targetStackId); } }