diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-09-03 07:53:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 07:53:36 +0200 |
commit | ecd0d39c304597c77639600a40db25e86fa5a126 (patch) | |
tree | ebf44182fc654bb379a55d773b63f278214abfd2 | |
parent | 6093acd4f00914da683d29c135f686fd3a97dd15 (diff) | |
parent | def82c5077bd4eff5ee1e3db8c447df122c89be4 (diff) | |
download | nextcloud-server-ecd0d39c304597c77639600a40db25e86fa5a126.tar.gz nextcloud-server-ecd0d39c304597c77639600a40db25e86fa5a126.zip |
Merge pull request #16928 from nextcloud/fix/icontrolelrmethodreflector
Remove reflect method form public interface
-rw-r--r-- | lib/public/AppFramework/Utility/IControllerMethodReflector.php | 1 |
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); |