From e5efc5e758d4027d1b226ec7532f6125367478d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20Klabbers?= Date: Thu, 22 Jun 2017 16:27:10 +0200 Subject: [PATCH] Update WebAppView.php Added argument type hinting where absent. --- framework/core/src/Http/WebApp/WebAppView.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/framework/core/src/Http/WebApp/WebAppView.php b/framework/core/src/Http/WebApp/WebAppView.php index 070c75131..d38e95839 100644 --- a/framework/core/src/Http/WebApp/WebAppView.php +++ b/framework/core/src/Http/WebApp/WebAppView.php @@ -415,6 +415,7 @@ class WebAppView /** * Get the result of an API request to show the forum. * + * @param Request $request * @return array */ protected function getForumDocument(Request $request) @@ -429,6 +430,7 @@ class WebAppView /** * Get the result of an API request to show the current user. * + * @param Request $request * @return array */ protected function getUserDocument(Request $request) @@ -447,6 +449,7 @@ class WebAppView /** * Get information about the current session. * + * @param Request $request * @return array */ protected function buildSession(Request $request)