From 3cd9324f27d67052ff1ac18128d689384efff33a Mon Sep 17 00:00:00 2001 From: Georgi <4854116+indjeto@users.noreply.github.com> Date: Fri, 30 Jan 2026 14:44:31 +0200 Subject: [PATCH 1/3] Php 8.4 deprecations fix --- src/EventListener/AuditListener.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/EventListener/AuditListener.php b/src/EventListener/AuditListener.php index 1ec9faa..b5fd4d5 100644 --- a/src/EventListener/AuditListener.php +++ b/src/EventListener/AuditListener.php @@ -222,11 +222,9 @@ public function flush(): void $auditPersister = $uow->getEntityPersister(AuditLog::class); $rmAuditInsertSQL = new \ReflectionMethod($auditPersister, 'getInsertSQL'); - $rmAuditInsertSQL->setAccessible(true); $this->auditInsertStmt = $this->entityManager->getConnection()->prepare($rmAuditInsertSQL->invoke($auditPersister)); $assocPersister = $uow->getEntityPersister(Association::class); $rmAssocInsertSQL = new \ReflectionMethod($assocPersister, 'getInsertSQL'); - $rmAssocInsertSQL->setAccessible(true); $this->assocInsertStmt = $this->entityManager->getConnection()->prepare($rmAssocInsertSQL->invoke($assocPersister)); foreach ($this->updated as $entry) { From b4fc89ea0fad755989c9c5915ca464d9cb408a80 Mon Sep 17 00:00:00 2001 From: Georgi <4854116+indjeto@users.noreply.github.com> Date: Fri, 30 Jan 2026 14:53:32 +0200 Subject: [PATCH 2/3] Php 8.4 deprecations fix --- src/DependencyInjection/DataDogAuditExtension.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DependencyInjection/DataDogAuditExtension.php b/src/DependencyInjection/DataDogAuditExtension.php index af1daf8..f3ea4d3 100644 --- a/src/DependencyInjection/DataDogAuditExtension.php +++ b/src/DependencyInjection/DataDogAuditExtension.php @@ -5,7 +5,7 @@ use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Loader\PhpFileLoader; -use Symfony\Component\HttpKernel\DependencyInjection\Extension; +use Symfony\Component\DependencyInjection\Extension\Extension; class DataDogAuditExtension extends Extension { From a1a463231a6248f120d8ff6302e8e7f4fa161c2b Mon Sep 17 00:00:00 2001 From: Georgi <4854116+indjeto@users.noreply.github.com> Date: Fri, 30 Jan 2026 15:14:56 +0200 Subject: [PATCH 3/3] COMP-373: update dependencies --- composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/composer.json b/composer.json index 200d285..890621c 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,7 @@ "ext-pdo": "*", "ext-pdo_sqlite": "*", "phpunit/phpunit": "^9", + "symfony/var-exporter": "^6.4 | ^7.0", "symfony/phpunit-bridge": "^6.4 | ^7.0" }, "autoload": {