PHP CS Fixer updated (3.63.1 -> v3.64.0)

This commit is contained in:
2024-09-04 14:38:56 +02:00
parent 063bc2857f
commit 313fb9ffdf
302 changed files with 391 additions and 391 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

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

View File

@@ -27,7 +27,7 @@ class ScopeController extends AbstractController
{
public function __construct(
private readonly EntityManagerInterface $entityManager,
private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry
private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry,
) {}
/**

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

@@ -46,7 +46,7 @@ class UserController extends CRUDController
protected ParameterBagInterface $parameterBag,
private readonly TranslatorInterface $translator,
private readonly ChillSecurity $security,
private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry
private readonly \Doctrine\Persistence\ManagerRegistry $managerRegistry,
) {}
#[Route(path: '/{_locale}/admin/main/user/{uid}/add_link_groupcenter', name: 'admin_user_add_groupcenter')]
@@ -324,7 +324,7 @@ class UserController extends CRUDController
Request $request,
int $totalItems,
PaginatorInterface $paginator,
?FilterOrderHelper $filterOrder = null
?FilterOrderHelper $filterOrder = null,
) {
if (0 === $totalItems) {
return [];

View File

@@ -27,7 +27,7 @@ final readonly class WorkflowAddSignatureController
private EntityWorkflowManager $entityWorkflowManager,
private PDFSignatureZoneAvailable $PDFSignatureZoneAvailable,
private NormalizerInterface $normalizer,
private Environment $twig
private Environment $twig,
) {}
#[Route(path: '/{_locale}/main/workflow/signature/{id}/sign', name: 'chill_main_workflow_signature_add', methods: 'GET')]