summaryrefslogtreecommitdiffstats
path: root/lib/public
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2021-10-25 22:20:19 +0000
committerChristopher Ng <chrng8@gmail.com>2021-10-25 22:20:19 +0000
commit9f8eae3f50d61e2bbe849ce2e9a15a6567a65706 (patch)
treec59dd5c84d7b168458dd6ba9df3bd80eea2c4752 /lib/public
parent9177afe8ab6d81fc719775c1b85643fcf28097b5 (diff)
downloadnextcloud-server-9f8eae3f50d61e2bbe849ce2e9a15a6567a65706.tar.gz
nextcloud-server-9f8eae3f50d61e2bbe849ce2e9a15a6567a65706.zip
Use more explicit naming for profile link action
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'lib/public')
-rw-r--r--lib/public/AppFramework/Bootstrap/IRegistrationContext.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php
index de391050ec1..3e5aef06e8b 100644
--- a/lib/public/AppFramework/Bootstrap/IRegistrationContext.php
+++ b/lib/public/AppFramework/Bootstrap/IRegistrationContext.php
@@ -255,12 +255,12 @@ interface IRegistrationContext {
/**
* Register an implementation of \OCP\Profile\ILinkAction that
- * will handle the implementation of a profile action
+ * will handle the implementation of a profile link action
*
* @param string $actionClass
* @psalm-param class-string<\OCP\Profile\ILinkAction> $actionClass
* @return void
* @since 23.0.0
*/
- public function registerProfileAction(string $actionClass): void;
+ public function registerProfileLinkAction(string $actionClass): void;
}