aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2023-01-26 13:18:19 +0100
committerGitHub <noreply@github.com>2023-01-26 13:18:19 +0100
commit033b03def064a7cabf6bcab2b0dfb7ac6de5af49 (patch)
tree96de496b9f71e391368ede3de1c0f5258c0b2b6d /lib
parent3eb73d0a3d081194e676b7e7ba220a118e01e18d (diff)
parent6d7339b0ff970a13e1581f8e10162e6cb85cabe3 (diff)
downloadnextcloud-server-033b03def064a7cabf6bcab2b0dfb7ac6de5af49.tar.gz
nextcloud-server-033b03def064a7cabf6bcab2b0dfb7ac6de5af49.zip
Merge pull request #36341 from nextcloud/fix/app-framework/middleware-before-controller-returns-void
fix(app-framework): Specify return type of Middleware::beforeController
Diffstat (limited to 'lib')
-rw-r--r--lib/public/AppFramework/Middleware.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Middleware.php b/lib/public/AppFramework/Middleware.php
index 5ae8eccae51..62b5e47c4cf 100644
--- a/lib/public/AppFramework/Middleware.php
+++ b/lib/public/AppFramework/Middleware.php
@@ -42,6 +42,7 @@ abstract class Middleware {
* @param Controller $controller the controller that is being called
* @param string $methodName the name of the method that will be called on
* the controller
+ * @return void
* @since 6.0.0
*/
public function beforeController($controller, $methodName) {