summaryrefslogtreecommitdiffstats
path: root/apps/sharebymail/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-02-07 13:44:35 +0100
committerJoas Schilling <coding@schilljs.com>2019-02-07 13:44:35 +0100
commit9cc7efaedc563f5d3fe43c0e9757071c55fc9756 (patch)
tree91f552a7f757d8dddeb76ec81620fbf6cb3923a8 /apps/sharebymail/lib
parent8db2f3ec3adddb0a293bfb8c102561c08270d710 (diff)
downloadnextcloud-server-9cc7efaedc563f5d3fe43c0e9757071c55fc9756.tar.gz
nextcloud-server-9cc7efaedc563f5d3fe43c0e9757071c55fc9756.zip
Make sure the relative path is always a string
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/sharebymail/lib')
-rw-r--r--apps/sharebymail/lib/ShareByMailProvider.php20
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/sharebymail/lib/ShareByMailProvider.php b/apps/sharebymail/lib/ShareByMailProvider.php
index e255adfd3f6..4af9b26d043 100644
--- a/apps/sharebymail/lib/ShareByMailProvider.php
+++ b/apps/sharebymail/lib/ShareByMailProvider.php
@@ -254,7 +254,7 @@ class ShareByMailProvider implements IShareProvider {
[$userFolder->getRelativePath($share->getNode()->getPath()), $share->getSharedWith()],
$share->getSharedBy(),
$share->getNode()->getId(),
- $userFolder->getRelativePath($share->getNode()->getPath())
+ (string) $userFolder->getRelativePath($share->getNode()->getPath())
);
if ($share->getShareOwner() !== $share->getSharedBy()) {
@@ -268,7 +268,7 @@ class ShareByMailProvider implements IShareProvider {
[$ownerFolder->getRelativePath($ownerPath), $share->getSharedWith(), $share->getSharedBy()],
$share->getShareOwner(),
$fileId,
- $ownerFolder->getRelativePath($ownerPath)
+ (string) $ownerFolder->getRelativePath($ownerPath)
);
}
@@ -291,7 +291,7 @@ class ShareByMailProvider implements IShareProvider {
[$userFolder->getRelativePath($share->getNode()->getPath())],
$share->getSharedBy(),
$share->getNode()->getId(),
- $userFolder->getRelativePath($share->getNode()->getPath())
+ (string) $userFolder->getRelativePath($share->getNode()->getPath())
);
} else {
$this->publishActivity(
@@ -299,7 +299,7 @@ class ShareByMailProvider implements IShareProvider {
[$userFolder->getRelativePath($share->getNode()->getPath()), $sharedWith],
$share->getSharedBy(),
$share->getNode()->getId(),
- $userFolder->getRelativePath($share->getNode()->getPath())
+ (string) $userFolder->getRelativePath($share->getNode()->getPath())
);
}
}
@@ -308,13 +308,13 @@ class ShareByMailProvider implements IShareProvider {
/**
* publish activity if a file/folder was shared by mail
*
- * @param $subject
- * @param $parameters
- * @param $affectedUser
- * @param $fileId
- * @param $filePath
+ * @param string $subject
+ * @param array $parameters
+ * @param string $affectedUser
+ * @param int $fileId
+ * @param string $filePath
*/
- protected function publishActivity($subject, $parameters, $affectedUser, $fileId, $filePath) {
+ protected function publishActivity(string $subject, array $parameters, string $affectedUser, int $fileId, string $filePath) {
$event = $this->activityManager->generateEvent();
$event->setApp('sharebymail')
->setType('shared')