aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-25 09:30:58 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2023-01-25 09:30:58 +0100
commit6d7339b0ff970a13e1581f8e10162e6cb85cabe3 (patch)
tree21a8c3d0ae8ff713a00da25718ace9f27b810f6f /lib
parent0be897bdfefc928cc9b566ef8392e6710860f81e (diff)
downloadnextcloud-server-6d7339b0ff970a13e1581f8e10162e6cb85cabe3.tar.gz
nextcloud-server-6d7339b0ff970a13e1581f8e10162e6cb85cabe3.zip
fix(app-framework): Specify return type of Middleware::beforeController
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
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) {