From 2159c775be4133e5f925803d47fbf1f0a12a0037 Mon Sep 17 00:00:00 2001 From: trendschau Date: Wed, 2 Feb 2022 21:37:32 +0100 Subject: [PATCH] Version 1.5.3 fix dispatcher for plugins --- system/Plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/Plugin.php b/system/Plugin.php index d1a66f1..4bdd1b9 100644 --- a/system/Plugin.php +++ b/system/Plugin.php @@ -85,7 +85,7 @@ abstract class Plugin implements EventSubscriberInterface protected function getDispatcher() { - return $this->$container['dispatcher']; + return $this->container['dispatcher']; } protected function getTwig()