summaryrefslogtreecommitdiffstats
path: root/lib/public/AppFramework/Utility
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2019-08-30 09:36:51 +0200
committerRoeland Jago Douma <roeland@famdouma.nl>2019-08-30 13:28:18 +0200
commitdef82c5077bd4eff5ee1e3db8c447df122c89be4 (patch)
tree6c7b308de204ee5d8de4d63c79fb1e88d7c0662c /lib/public/AppFramework/Utility
parent50769b5966c2c7b324ed5ab46919b756dc7b15c2 (diff)
downloadnextcloud-server-def82c5077bd4eff5ee1e3db8c447df122c89be4.tar.gz
nextcloud-server-def82c5077bd4eff5ee1e3db8c447df122c89be4.zip
Remove reflect method form public interface
The reflect method is (and should) only every be called internally. Since if you call it again it would otherwise start mixing and matching arguments etc. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'lib/public/AppFramework/Utility')
-rw-r--r--lib/public/AppFramework/Utility/IControllerMethodReflector.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/public/AppFramework/Utility/IControllerMethodReflector.php b/lib/public/AppFramework/Utility/IControllerMethodReflector.php
index e2074b9fe00..bc9a04f44cf 100644
--- a/lib/public/AppFramework/Utility/IControllerMethodReflector.php
+++ b/lib/public/AppFramework/Utility/IControllerMethodReflector.php
@@ -40,6 +40,7 @@ interface IControllerMethodReflector {
* @param string $method the method which we want to inspect
* @return void
* @since 8.0.0
+ * @deprecated 17.0.0 Reflect should not be called multiple times and only be used internally. This will be removed in Nextcloud 18
*/
public function reflect($object, string $method);