diff options
author | Joas Schilling <coding@schilljs.com> | 2023-10-18 17:16:22 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2023-10-18 17:16:22 +0200 |
commit | 4f76c131a4485f7a079e10fca0a53a30490be371 (patch) | |
tree | f1cc9b59c3fc69f31f2bbc84bb9e101304506b41 /lib/public/Federation | |
parent | a1d70ab78ad650c0860197ef37ecbe047be2ff0b (diff) | |
download | nextcloud-server-4f76c131a4485f7a079e10fca0a53a30490be371.tar.gz nextcloud-server-4f76c131a4485f7a079e10fca0a53a30490be371.zip |
fix(federation): Fix type and docs on ICloudFederationNotification interface
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/public/Federation')
-rw-r--r-- | lib/public/Federation/ICloudFederationNotification.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/public/Federation/ICloudFederationNotification.php b/lib/public/Federation/ICloudFederationNotification.php index 2b51b2bc8db..26a98027d5e 100644 --- a/lib/public/Federation/ICloudFederationNotification.php +++ b/lib/public/Federation/ICloudFederationNotification.php @@ -34,8 +34,8 @@ interface ICloudFederationNotification { * * @param string $notificationType (e.g. SHARE_ACCEPTED) * @param string $resourceType (e.g. file, calendar, contact,...) - * @param $providerId id of the share - * @param array $notification , payload of the notification + * @param string $providerId id of the share + * @param array $notification payload of the notification * * @since 14.0.0 */ |