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/Accounts | |
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/Accounts')
-rw-r--r-- | lib/public/Accounts/IAccount.php | 1 | ||||
-rw-r--r-- | lib/public/Accounts/IAccountManager.php | 1 | ||||
-rw-r--r-- | lib/public/Accounts/IAccountProperty.php | 1 | ||||
-rw-r--r-- | lib/public/Accounts/PropertyDoesNotExistException.php | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/lib/public/Accounts/IAccount.php b/lib/public/Accounts/IAccount.php index a389ce5fddb..3f8c86cbc1a 100644 --- a/lib/public/Accounts/IAccount.php +++ b/lib/public/Accounts/IAccount.php @@ -32,7 +32,6 @@ use OCP\IUser; * Interface IAccount * * @since 15.0.0 - * @package OCP\Accounts */ interface IAccount extends \JsonSerializable { diff --git a/lib/public/Accounts/IAccountManager.php b/lib/public/Accounts/IAccountManager.php index bfd56c4da68..3306abc55f1 100644 --- a/lib/public/Accounts/IAccountManager.php +++ b/lib/public/Accounts/IAccountManager.php @@ -34,7 +34,6 @@ use OCP\IUser; * * @since 15.0.0 * - * @package OCP\Accounts */ interface IAccountManager { diff --git a/lib/public/Accounts/IAccountProperty.php b/lib/public/Accounts/IAccountProperty.php index 0cab4d0203e..657121a27e8 100644 --- a/lib/public/Accounts/IAccountProperty.php +++ b/lib/public/Accounts/IAccountProperty.php @@ -29,7 +29,6 @@ namespace OCP\Accounts; /** * Interface IAccountProperty * - * @package OCP\Account * @since 15.0.0 */ interface IAccountProperty extends \JsonSerializable { diff --git a/lib/public/Accounts/PropertyDoesNotExistException.php b/lib/public/Accounts/PropertyDoesNotExistException.php index bc5ab756849..c38487ea928 100644 --- a/lib/public/Accounts/PropertyDoesNotExistException.php +++ b/lib/public/Accounts/PropertyDoesNotExistException.php @@ -29,7 +29,6 @@ namespace OCP\Accounts; * * @since 15.0.0 * - * @package OCP\Accounts */ class PropertyDoesNotExistException extends \Exception { |