From 5c20565600931c6bc6cb889b83255cd641eb2dab Mon Sep 17 00:00:00 2001 From: dereuromark Date: Sat, 28 Jan 2017 12:59:40 +0100 Subject: [PATCH] Prevent IDE from reporting an error here. --- src/Controller/Controller.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Controller/Controller.php b/src/Controller/Controller.php index 6d3705b3989..cd4bf8167c6 100644 --- a/src/Controller/Controller.php +++ b/src/Controller/Controller.php @@ -430,6 +430,7 @@ public function invokeAction() 'plugin' => $request->getParam('plugin'), ]); } + /* @var callable $callable */ $callable = [$this, $request->getParam('action')]; return $callable(...$request->getParam('pass'));