Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-08-26 17:59:40 +0300
committerJulius Härtl <jus@bitgrid.net>2020-08-26 17:59:40 +0300
commit45a474071e2245a3d2c31a193a02e707c53c5790 (patch)
tree55c1e7c1ecec34a0f044017c330a61b254bb8fc0 /lib/public/Encryption
parent94c0ca4b8ca75802bcecffa19fea9d5e14545c35 (diff)
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.php1
-rw-r--r--lib/public/Encryption/IEncryptionModule.php1
-rw-r--r--lib/public/Encryption/IFile.php1
-rw-r--r--lib/public/Encryption/Keys/IStorage.php1
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 {