diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-08-26 16:59:40 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-26 16:59:40 +0200 |
commit | 45a474071e2245a3d2c31a193a02e707c53c5790 (patch) | |
tree | 55c1e7c1ecec34a0f044017c330a61b254bb8fc0 /lib/public/Share | |
parent | 94c0ca4b8ca75802bcecffa19fea9d5e14545c35 (diff) | |
download | nextcloud-server-45a474071e2245a3d2c31a193a02e707c53c5790.tar.gz nextcloud-server-45a474071e2245a3d2c31a193a02e707c53c5790.zip |
Remove @package annotations from public namespace
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib/public/Share')
-rw-r--r-- | lib/public/Share/Exceptions/GenericShareException.php | 1 | ||||
-rw-r--r-- | lib/public/Share/Exceptions/ShareNotFound.php | 1 | ||||
-rw-r--r-- | lib/public/Share/IManager.php | 1 | ||||
-rw-r--r-- | lib/public/Share/IShare.php | 1 | ||||
-rw-r--r-- | lib/public/Share/IShareHelper.php | 1 | ||||
-rw-r--r-- | lib/public/Share/IShareProvider.php | 1 |
6 files changed, 0 insertions, 6 deletions
diff --git a/lib/public/Share/Exceptions/GenericShareException.php b/lib/public/Share/Exceptions/GenericShareException.php index 1956014658d..8d622ff848f 100644 --- a/lib/public/Share/Exceptions/GenericShareException.php +++ b/lib/public/Share/Exceptions/GenericShareException.php @@ -30,7 +30,6 @@ use OC\HintException; /** * Class GenericEncryptionException * - * @package OCP\Share\Exceptions * @since 9.0.0 */ class GenericShareException extends HintException { diff --git a/lib/public/Share/Exceptions/ShareNotFound.php b/lib/public/Share/Exceptions/ShareNotFound.php index c3e65684f19..12cdbf4fd9c 100644 --- a/lib/public/Share/Exceptions/ShareNotFound.php +++ b/lib/public/Share/Exceptions/ShareNotFound.php @@ -25,7 +25,6 @@ namespace OCP\Share\Exceptions; /** * Class ShareNotFound * - * @package 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 1eb7c789048..cc2ec45cc9f 100644 --- a/lib/public/Share/IManager.php +++ b/lib/public/Share/IManager.php @@ -39,7 +39,6 @@ use OCP\Share\Exceptions\ShareNotFound; /** * Interface IManager * - * @package OCP\Share * @since 9.0.0 */ interface IManager { diff --git a/lib/public/Share/IShare.php b/lib/public/Share/IShare.php index 12b807400ff..7b38e00df46 100644 --- a/lib/public/Share/IShare.php +++ b/lib/public/Share/IShare.php @@ -38,7 +38,6 @@ use OCP\Share\Exceptions\IllegalIDChangeException; /** * Interface IShare * - * @package OCP\Share * @since 9.0.0 */ interface IShare { diff --git a/lib/public/Share/IShareHelper.php b/lib/public/Share/IShareHelper.php index 8c899c621bb..37defc00f93 100644 --- a/lib/public/Share/IShareHelper.php +++ b/lib/public/Share/IShareHelper.php @@ -29,7 +29,6 @@ use OCP\Files\Node; /** * Interface IShareHelper * - * @package OCP\Share * @since 12 */ interface IShareHelper { diff --git a/lib/public/Share/IShareProvider.php b/lib/public/Share/IShareProvider.php index d52add3cded..87e9673b961 100644 --- a/lib/public/Share/IShareProvider.php +++ b/lib/public/Share/IShareProvider.php @@ -34,7 +34,6 @@ use OCP\Share\Exceptions\ShareNotFound; /** * Interface IShareProvider * - * @package OCP\Share * @since 9.0.0 */ interface IShareProvider { |