From ba9a91eaa82d58de9a7528098583b38971dbcf58 Mon Sep 17 00:00:00 2001 From: webeweb Date: Mon, 16 Jul 2018 18:00:57 +0200 Subject: [PATCH] Call parent constructor with $matcher argument --- Navigation/NavigationNode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Navigation/NavigationNode.php b/Navigation/NavigationNode.php index 7c515542..74b52000 100644 --- a/Navigation/NavigationNode.php +++ b/Navigation/NavigationNode.php @@ -28,7 +28,7 @@ class NavigationNode extends AbstractNavigationNode { * @param string $matcher The matcher. */ public function __construct($name, $icon = null, $route = null, $matcher = self::NAVIGATION_MATCHER_URL) { - parent::__construct($name, $icon, $route); + parent::__construct($name, $icon, $route, $matcher); } }