diff options
Diffstat (limited to 'lib/public/Share')
-rw-r--r-- | lib/public/Share/Exceptions/GenericShareException.php | 1 | ||||
-rw-r--r-- | lib/public/Share/Exceptions/IllegalIDChangeException.php | 3 | ||||
-rw-r--r-- | lib/public/Share/Exceptions/ShareNotFound.php | 1 | ||||
-rw-r--r-- | lib/public/Share/IManager.php | 1 |
4 files changed, 2 insertions, 4 deletions
diff --git a/lib/public/Share/Exceptions/GenericShareException.php b/lib/public/Share/Exceptions/GenericShareException.php index 3714edbfc33..90d93d04269 100644 --- a/lib/public/Share/Exceptions/GenericShareException.php +++ b/lib/public/Share/Exceptions/GenericShareException.php @@ -47,5 +47,4 @@ class GenericShareException extends HintException { } parent::__construct($message, $hint, $code, $previous); } - } diff --git a/lib/public/Share/Exceptions/IllegalIDChangeException.php b/lib/public/Share/Exceptions/IllegalIDChangeException.php index da34cf64b0b..14121dd8934 100644 --- a/lib/public/Share/Exceptions/IllegalIDChangeException.php +++ b/lib/public/Share/Exceptions/IllegalIDChangeException.php @@ -26,4 +26,5 @@ namespace OCP\Share\Exceptions; * Exception for illegal attempts to modify an id of a share * @since 9.1.0 */ -class IllegalIDChangeException extends GenericShareException {} +class IllegalIDChangeException extends GenericShareException { +} diff --git a/lib/public/Share/Exceptions/ShareNotFound.php b/lib/public/Share/Exceptions/ShareNotFound.php index d37fe2708ef..c3e65684f19 100644 --- a/lib/public/Share/Exceptions/ShareNotFound.php +++ b/lib/public/Share/Exceptions/ShareNotFound.php @@ -29,5 +29,4 @@ namespace OCP\Share\Exceptions; * @since 9.0.0 */ class ShareNotFound extends GenericShareException { - } diff --git a/lib/public/Share/IManager.php b/lib/public/Share/IManager.php index df82e785afe..1eb7c789048 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -428,5 +428,4 @@ interface IManager { * @since 18.0.0 */ public function getAllShares(): iterable; - } |