From ca7f7d759be3ec94dcde615ccfc36ff1f383f75b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Mummert?= Date: Wed, 4 Mar 2026 16:29:26 +0100 Subject: [PATCH] Fix bundle path resolution so tl_pinnwand schema is detected --- src/ContaoPinboardBundle.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ContaoPinboardBundle.php b/src/ContaoPinboardBundle.php index 13a0697..c0b9784 100644 --- a/src/ContaoPinboardBundle.php +++ b/src/ContaoPinboardBundle.php @@ -8,4 +8,8 @@ use Symfony\Component\HttpKernel\Bundle\Bundle; final class ContaoPinboardBundle extends Bundle { + public function getPath(): string + { + return dirname(__DIR__); + } }