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/Encryption | |
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/Encryption')
-rw-r--r-- | lib/public/Encryption/Exceptions/GenericEncryptionException.php | 1 | ||||
-rw-r--r-- | lib/public/Encryption/IEncryptionModule.php | 1 | ||||
-rw-r--r-- | lib/public/Encryption/IFile.php | 1 | ||||
-rw-r--r-- | lib/public/Encryption/Keys/IStorage.php | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/lib/public/Encryption/Exceptions/GenericEncryptionException.php b/lib/public/Encryption/Exceptions/GenericEncryptionException.php index 39842b20365..6e50c31d851 100644 --- a/lib/public/Encryption/Exceptions/GenericEncryptionException.php +++ b/lib/public/Encryption/Exceptions/GenericEncryptionException.php @@ -32,7 +32,6 @@ use OC\HintException; /** * Class GenericEncryptionException * - * @package OCP\Encryption\Exceptions * @since 8.1.0 */ class GenericEncryptionException extends HintException { diff --git a/lib/public/Encryption/IEncryptionModule.php b/lib/public/Encryption/IEncryptionModule.php index a4a84c2f2c2..7d306d3c2fe 100644 --- a/lib/public/Encryption/IEncryptionModule.php +++ b/lib/public/Encryption/IEncryptionModule.php @@ -33,7 +33,6 @@ use Symfony\Component\Console\Output\OutputInterface; /** * Interface IEncryptionModule * - * @package OCP\Encryption * @since 8.1.0 */ interface IEncryptionModule { diff --git a/lib/public/Encryption/IFile.php b/lib/public/Encryption/IFile.php index e01c7ec4cac..6819cdcf642 100644 --- a/lib/public/Encryption/IFile.php +++ b/lib/public/Encryption/IFile.php @@ -27,7 +27,6 @@ namespace OCP\Encryption; /** * Interface IFile * - * @package OCP\Encryption * @since 8.1.0 */ interface IFile { diff --git a/lib/public/Encryption/Keys/IStorage.php b/lib/public/Encryption/Keys/IStorage.php index 96283fae77c..aa9f3aae3e7 100644 --- a/lib/public/Encryption/Keys/IStorage.php +++ b/lib/public/Encryption/Keys/IStorage.php @@ -29,7 +29,6 @@ namespace OCP\Encryption\Keys; /** * Interface IStorage * - * @package OCP\Encryption\Keys * @since 8.1.0 */ interface IStorage { |