Skip to content

Commit

Permalink
TTK-27374: fix php cs fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
albacodina committed Dec 10, 2024
1 parent 45e42f7 commit 59dcce7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Pumukit/WizardBundle/Controller/WizardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public function upload(Request $request, string $series): Response
'minFileSize' => $this->inboxService->minFileSize(),
'maxFileSize' => $this->inboxService->maxFileSize(),
'maxNumberOfFiles' => $this->inboxService->maxNumberOfFiles(),
'show_profiles' => $request->query->get('show_profiles') !== null ? filter_var($request->query->get('show_profiles'), FILTER_VALIDATE_BOOLEAN) : true,
'profile' => $request->query->get('profile', null)
'show_profiles' => null !== $request->query->get('show_profiles') ? filter_var($request->query->get('show_profiles'), FILTER_VALIDATE_BOOLEAN) : true,
'profile' => $request->query->get('profile', null),
]);
}

Expand Down

0 comments on commit 59dcce7

Please sign in to comment.