From: =?utf-8?q?David_Pr=C3=A9vot?= <taffit@debian.org>
Date: Thu, 30 Jan 2025 19:18:56 +0100
Subject: Compatibility with php-doctrine-persistence 4

---
 Dbal/MutableAclProvider.php | 2 +-
 Domain/Acl.php              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Dbal/MutableAclProvider.php b/Dbal/MutableAclProvider.php
index a7e8c88..7aa96ba 100644
--- a/Dbal/MutableAclProvider.php
+++ b/Dbal/MutableAclProvider.php
@@ -178,7 +178,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf
      *
      * @throws \InvalidArgumentException
      */
-    public function propertyChanged($sender, $propertyName, $oldValue, $newValue)
+    public function propertyChanged($sender, $propertyName, $oldValue, $newValue): void
     {
         if (!$sender instanceof MutableAclInterface && !$sender instanceof EntryInterface) {
             throw new \InvalidArgumentException('$sender must be an instance of MutableAclInterface, or EntryInterface.');
diff --git a/Domain/Acl.php b/Domain/Acl.php
index 3a79621..2ccdd48 100644
--- a/Domain/Acl.php
+++ b/Domain/Acl.php
@@ -67,7 +67,7 @@ class Acl implements AuditableAclInterface, NotifyPropertyChanged
      *
      * @return void
      */
-    public function addPropertyChangedListener(PropertyChangedListener $listener)
+    public function addPropertyChangedListener(PropertyChangedListener $listener): void
     {
         $this->listeners[] = $listener;
     }
