Upgrade of php-cs-fixer

This commit is contained in:
2024-09-11 14:21:32 +02:00
parent 8b1b255050
commit d0ee381627
273 changed files with 357 additions and 357 deletions

View File

@@ -24,7 +24,7 @@ class NewsItemApiController
public function __construct(
private readonly NewsItemRepository $newsItemRepository,
private readonly SerializerInterface $serializer,
private readonly PaginatorFactory $paginatorFactory
private readonly PaginatorFactory $paginatorFactory,
) {
}

View File

@@ -74,7 +74,7 @@ class PasswordController extends AbstractController
RecoverPasswordHelper $recoverPasswordHelper,
TokenManager $tokenManager,
TranslatorInterface $translator,
EventDispatcherInterface $eventDispatcher
EventDispatcherInterface $eventDispatcher,
) {
$this->chillLogger = $chillLogger;
$this->passwordEncoder = $passwordEncoder;

View File

@@ -454,7 +454,7 @@ final class PermissionsGroupController extends AbstractController
*/
private function createDeleteRoleScopeForm(
PermissionsGroup $permissionsGroup,
RoleScope $roleScope
RoleScope $roleScope,
): FormInterface {
return $this->createFormBuilder()
->setAction($this->generateUrl(

View File

@@ -20,7 +20,7 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
class UIController extends AbstractController
{
public function showNotificationUserCounterAction(
CountNotificationUser $counter
CountNotificationUser $counter,
) {
$nb = $counter->getSumNotification($this->getUser());

View File

@@ -322,7 +322,7 @@ class UserController extends CRUDController
Request $request,
int $totalItems,
PaginatorInterface $paginator,
?FilterOrderHelper $filterOrder = null
?FilterOrderHelper $filterOrder = null,
) {
if (0 === $totalItems) {
return [];