Disable Turbo for now

This commit is contained in:
2025-06-09 15:52:15 +02:00
parent d5566d4737
commit a8c4cba968
2 changed files with 14 additions and 16 deletions

View File

@@ -2,7 +2,7 @@
"controllers": {
"@symfony/ux-turbo": {
"turbo-core": {
"enabled": true,
"enabled": false,
"fetch": "eager"
},
"mercure-turbo-stream": {

View File

@@ -73,7 +73,7 @@ class QuizSpreadsheetService
*
* @throws SpreadsheetDataException
*/
private function fillQuizFromArray(Quiz $quiz, array $sheet): Quiz
private function fillQuizFromArray(Quiz $quiz, array $sheet): void
{
$errors = [];
@@ -110,8 +110,6 @@ class QuizSpreadsheetService
if ([] !== $errors) {
throw new SpreadsheetDataException($errors);
}
return $quiz;
}
public function quizToXlsx(Quiz $quiz): void {}