From c1e29ab8cb30e1c2f2144c2ef44f9103c78994e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 15 Feb 2023 09:28:11 +0100 Subject: [PATCH] fix: Fix missing getBoardId method on AclEvent MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Event/AAclEvent.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/Event/AAclEvent.php b/lib/Event/AAclEvent.php index c052bc490..f7107fe1c 100644 --- a/lib/Event/AAclEvent.php +++ b/lib/Event/AAclEvent.php @@ -41,4 +41,8 @@ abstract class AAclEvent extends Event { public function getAcl(): Acl { return $this->acl; } + + public function getBoardId(): int { + return $this->acl->getBoardId(); + } }