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

@@ -26,7 +26,7 @@ final readonly class EntityWorkflowTransitionEventSubscriber implements EventSub
public function __construct(
private LoggerInterface $chillLogger,
private Security $security,
private UserRender $userRender
private UserRender $userRender,
) {}
public static function getSubscribedEvents(): array

View File

@@ -28,7 +28,7 @@ class NotificationOnTransition implements EventSubscriberInterface
private readonly \Twig\Environment $engine,
private readonly MetadataExtractor $metadataExtractor,
private readonly Security $security,
private readonly Registry $registry
private readonly Registry $registry,
) {}
public static function getSubscribedEvents(): array

View File

@@ -25,7 +25,7 @@ class SendAccessKeyEventSubscriber
private readonly MetadataExtractor $metadataExtractor,
private readonly Registry $registry,
private readonly EntityWorkflowManager $entityWorkflowManager,
private readonly MailerInterface $mailer
private readonly MailerInterface $mailer,
) {}
public function postPersist(EntityWorkflowStep $step): void

View File

@@ -69,7 +69,7 @@ class WorkflowTransitionContextDTO
public string $comment = '';
public function __construct(
public EntityWorkflow $entityWorkflow
public EntityWorkflow $entityWorkflow,
) {}
#[Assert\Callback()]