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": { "controllers": {
"@symfony/ux-turbo": { "@symfony/ux-turbo": {
"turbo-core": { "turbo-core": {
"enabled": true, "enabled": false,
"fetch": "eager" "fetch": "eager"
}, },
"mercure-turbo-stream": { "mercure-turbo-stream": {

View File

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