Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGary Kim <gary@garykim.dev>2021-06-29 07:40:06 +0300
committerGary Kim <gary@garykim.dev>2021-07-15 20:54:41 +0300
commit5219c0deb24dfccb11794447da52bddfeb3d9cc9 (patch)
treeb77e4a9dfa21277aa5ece6cc019c539681d0b4aa /lib
parenta35b98f8c15e19bde6098081b41e544e95e4b532 (diff)
Fix fixable Psalm errors
Signed-off-by: Gary Kim <gary@garykim.dev>
Diffstat (limited to 'lib')
-rw-r--r--lib/Federation/CloudFederationProviderTalk.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Federation/CloudFederationProviderTalk.php b/lib/Federation/CloudFederationProviderTalk.php
index 9cf401afd..909b09e34 100644
--- a/lib/Federation/CloudFederationProviderTalk.php
+++ b/lib/Federation/CloudFederationProviderTalk.php
@@ -26,7 +26,6 @@ declare(strict_types=1);
namespace OCA\Talk\Federation;
use Exception;
-use OC\AppFramework\Http;
use OC\HintException;
use OCA\FederatedFileSharing\AddressHandler;
use OCA\Talk\AppInfo\Application;
@@ -35,6 +34,7 @@ use OCA\Talk\Model\Attendee;
use OCA\Talk\Model\AttendeeMapper;
use OCA\Talk\Participant;
use OCA\Talk\Service\ParticipantService;
+use OCP\AppFramework\Http;
use OCP\DB\Exception as DBException;
use OCP\Federation\Exceptions\ActionNotSupportedException;
use OCP\Federation\Exceptions\AuthenticationFailedException;
@@ -172,6 +172,7 @@ class CloudFederationProviderTalk implements ICloudFederationProvider {
case 'RESHARE_CHANGE_PERMISSION':
return []; // TODO: Implement
}
+ return [];
// TODO: Implement notificationReceived() method.
}