aboutsummaryrefslogtreecommitdiffstats
path: root/lib/public/Federation
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-01-20 11:45:08 +0100
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-01-20 11:45:08 +0100
commitf5c361cf44739058b79f322576a1bad2d8c142d9 (patch)
treea22217c6995751023112832d191d213e494e2fbc /lib/public/Federation
parent37bb33c5799b834dfef3fb73936bd0e5a4773fb8 (diff)
downloadnextcloud-server-f5c361cf44739058b79f322576a1bad2d8c142d9.tar.gz
nextcloud-server-f5c361cf44739058b79f322576a1bad2d8c142d9.zip
composer run cs:fix
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/public/Federation')
-rw-r--r--lib/public/Federation/Exceptions/ActionNotSupportedException.php1
-rw-r--r--lib/public/Federation/Exceptions/AuthenticationFailedException.php1
-rw-r--r--lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php1
-rw-r--r--lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php1
-rw-r--r--lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php1
-rw-r--r--lib/public/Federation/ICloudFederationFactory.php1
-rw-r--r--lib/public/Federation/ICloudFederationNotification.php1
-rw-r--r--lib/public/Federation/ICloudFederationProvider.php1
-rw-r--r--lib/public/Federation/ICloudFederationProviderManager.php1
-rw-r--r--lib/public/Federation/ICloudFederationShare.php1
10 files changed, 0 insertions, 10 deletions
diff --git a/lib/public/Federation/Exceptions/ActionNotSupportedException.php b/lib/public/Federation/Exceptions/ActionNotSupportedException.php
index 7b2ca3d9597..e5f8d50fd99 100644
--- a/lib/public/Federation/Exceptions/ActionNotSupportedException.php
+++ b/lib/public/Federation/Exceptions/ActionNotSupportedException.php
@@ -31,7 +31,6 @@ use OCP\HintException;
* @since 14.0.0
*/
class ActionNotSupportedException extends HintException {
-
/**
* ActionNotSupportedException constructor.
*
diff --git a/lib/public/Federation/Exceptions/AuthenticationFailedException.php b/lib/public/Federation/Exceptions/AuthenticationFailedException.php
index dfcd9636035..2bd3e361edd 100644
--- a/lib/public/Federation/Exceptions/AuthenticationFailedException.php
+++ b/lib/public/Federation/Exceptions/AuthenticationFailedException.php
@@ -31,7 +31,6 @@ use OCP\HintException;
* @since 14.0.0
*/
class AuthenticationFailedException extends HintException {
-
/**
* BadRequestException constructor.
*
diff --git a/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php b/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php
index b6d4b7e9bce..d30d81eca27 100644
--- a/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php
+++ b/lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php
@@ -33,7 +33,6 @@ use OCP\HintException;
* @since 14.0.0
*/
class ProviderAlreadyExistsException extends HintException {
-
/**
* ProviderAlreadyExistsException constructor.
*
diff --git a/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php b/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php
index efcc8788386..9294f5e1d95 100644
--- a/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php
+++ b/lib/public/Federation/Exceptions/ProviderCouldNotAddShareException.php
@@ -32,7 +32,6 @@ use OCP\HintException;
* @since 14.0.0
*/
class ProviderCouldNotAddShareException extends HintException {
-
/**
* ProviderCouldNotAddShareException constructor.
*
diff --git a/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php b/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php
index 69c69f17d99..849209da22d 100644
--- a/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php
+++ b/lib/public/Federation/Exceptions/ProviderDoesNotExistsException.php
@@ -31,7 +31,6 @@ use OCP\HintException;
* @since 14.0.0
*/
class ProviderDoesNotExistsException extends HintException {
-
/**
* ProviderDoesNotExistsException constructor.
*
diff --git a/lib/public/Federation/ICloudFederationFactory.php b/lib/public/Federation/ICloudFederationFactory.php
index d92e9f6b4ed..ba1d93bb4cd 100644
--- a/lib/public/Federation/ICloudFederationFactory.php
+++ b/lib/public/Federation/ICloudFederationFactory.php
@@ -29,7 +29,6 @@ namespace OCP\Federation;
* @since 14.0.0
*/
interface ICloudFederationFactory {
-
/**
* get a CloudFederationShare Object to prepare a share you want to send
*
diff --git a/lib/public/Federation/ICloudFederationNotification.php b/lib/public/Federation/ICloudFederationNotification.php
index b8fec05d6d2..2b51b2bc8db 100644
--- a/lib/public/Federation/ICloudFederationNotification.php
+++ b/lib/public/Federation/ICloudFederationNotification.php
@@ -29,7 +29,6 @@ namespace OCP\Federation;
* @since 14.0.0
*/
interface ICloudFederationNotification {
-
/**
* add a message to the notification
*
diff --git a/lib/public/Federation/ICloudFederationProvider.php b/lib/public/Federation/ICloudFederationProvider.php
index 2e9d58fcb3e..7cb620848ef 100644
--- a/lib/public/Federation/ICloudFederationProvider.php
+++ b/lib/public/Federation/ICloudFederationProvider.php
@@ -39,7 +39,6 @@ use OCP\Share\Exceptions\ShareNotFound;
*/
interface ICloudFederationProvider {
-
/**
* get the name of the share type, handled by this provider
*
diff --git a/lib/public/Federation/ICloudFederationProviderManager.php b/lib/public/Federation/ICloudFederationProviderManager.php
index e607b0555ab..7272653b14d 100644
--- a/lib/public/Federation/ICloudFederationProviderManager.php
+++ b/lib/public/Federation/ICloudFederationProviderManager.php
@@ -32,7 +32,6 @@ namespace OCP\Federation;
*
*/
interface ICloudFederationProviderManager {
-
/**
* Registers an callback function which must return an cloud federation provider
*
diff --git a/lib/public/Federation/ICloudFederationShare.php b/lib/public/Federation/ICloudFederationShare.php
index 892a47e8186..c2a4ca29e11 100644
--- a/lib/public/Federation/ICloudFederationShare.php
+++ b/lib/public/Federation/ICloudFederationShare.php
@@ -29,7 +29,6 @@ namespace OCP\Federation;
* @since 14.0.0
*/
interface ICloudFederationShare {
-
/**
* set uid of the recipient
*