diff --git a/src/CompilerPass/ExceptionConfigCompilerPass.php b/src/CompilerPass/ExceptionConfigCompilerPass.php index 7c2c401..72f4f15 100644 --- a/src/CompilerPass/ExceptionConfigCompilerPass.php +++ b/src/CompilerPass/ExceptionConfigCompilerPass.php @@ -28,7 +28,7 @@ private function getConfig(ContainerBuilder $container, string $bundle): array return (new Processor()) ->processConfiguration( new Configuration($debug), - $container->getExtensionConfig($bundle) + $container->getExtensionConfig($bundle), ); } } diff --git a/src/Subscriber/ScheduledTaskSubscriber.php b/src/Subscriber/ScheduledTaskSubscriber.php index 314d6b5..633190a 100644 --- a/src/Subscriber/ScheduledTaskSubscriber.php +++ b/src/Subscriber/ScheduledTaskSubscriber.php @@ -34,7 +34,7 @@ class ScheduledTaskSubscriber implements EventSubscriberInterface */ public function __construct( private readonly EntityRepository $scheduledTaskRepository, - private readonly bool $reportScheduledTasks + private readonly bool $reportScheduledTasks, ) {} public static function getSubscribedEvents(): array @@ -92,7 +92,7 @@ public function onScheduledTaskWritten(EntityWrittenEvent $event): void ScheduledTaskDefinition::STATUS_RUNNING => CheckInStatus::inProgress(), ScheduledTaskDefinition::STATUS_SCHEDULED => CheckInStatus::ok(), ScheduledTaskDefinition::STATUS_FAILED => CheckInStatus::error(), - default => null + default => null, }; if ($checkInStatus !== null) { @@ -123,7 +123,7 @@ private function getCheckInId(ScheduledTaskEntity $scheduledTask): ?string return captureCheckIn( slug: $scheduledTask->getName(), status: CheckInStatus::inProgress(), - monitorConfig: $this->monitorConfig($scheduledTask) + monitorConfig: $this->monitorConfig($scheduledTask), ); }