diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-08-26 12:35:27 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-27 09:16:52 +0200 |
commit | 6ae83a72cd87bc9b493b885eebd12f99d9a4bd76 (patch) | |
tree | 096e6df45ae298542b7d71cfae5658732ad6235e /lib | |
parent | 1874349cb902b58ecf8467e64f8efeff8b41781a (diff) | |
download | nextcloud-server-6ae83a72cd87bc9b493b885eebd12f99d9a4bd76.tar.gz nextcloud-server-6ae83a72cd87bc9b493b885eebd12f99d9a4bd76.zip |
Remove wrongly annotated package names
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/public/AppFramework/App.php | 1 | ||||
-rw-r--r-- | lib/public/Files/SimpleFS/InMemoryFile.php | 1 | ||||
-rw-r--r-- | lib/public/FullTextSearch/Model/IIndexDocument.php | 2 | ||||
-rw-r--r-- | lib/public/IGroupManager.php | 1 | ||||
-rw-r--r-- | lib/public/IUserManager.php | 1 | ||||
-rw-r--r-- | lib/public/Share/IProviderFactory.php | 1 |
6 files changed, 0 insertions, 7 deletions
diff --git a/lib/public/AppFramework/App.php b/lib/public/AppFramework/App.php index 016ef5a0318..7fd8493c0c3 100644 --- a/lib/public/AppFramework/App.php +++ b/lib/public/AppFramework/App.php @@ -45,7 +45,6 @@ use OCP\Route\IRouter; /** * Class App - * @package OCP\AppFramework * * Any application must inherit this call - all controller instances to be used are * to be registered using IContainer::registerService diff --git a/lib/public/Files/SimpleFS/InMemoryFile.php b/lib/public/Files/SimpleFS/InMemoryFile.php index 61ed8c07b64..d420638737d 100644 --- a/lib/public/Files/SimpleFS/InMemoryFile.php +++ b/lib/public/Files/SimpleFS/InMemoryFile.php @@ -32,7 +32,6 @@ use OCP\Files\NotPermittedException; /** * This class represents a file that is only hold in memory. * - * @package OC\Files\SimpleFS * @since 16.0.0 */ class InMemoryFile implements ISimpleFile { diff --git a/lib/public/FullTextSearch/Model/IIndexDocument.php b/lib/public/FullTextSearch/Model/IIndexDocument.php index cc9e6a71782..cbc44f73031 100644 --- a/lib/public/FullTextSearch/Model/IIndexDocument.php +++ b/lib/public/FullTextSearch/Model/IIndexDocument.php @@ -40,8 +40,6 @@ namespace OCP\FullTextSearch\Model; * generated. As an example, an original document can be a file, a mail, ... * * @since 15.0.0 - * - * @package OC\FullTextSearch\Model */ interface IIndexDocument { public const NOT_ENCODED = 0; diff --git a/lib/public/IGroupManager.php b/lib/public/IGroupManager.php index 09dc30544b0..f8f0a5c47cd 100644 --- a/lib/public/IGroupManager.php +++ b/lib/public/IGroupManager.php @@ -43,7 +43,6 @@ namespace OCP; * - preCreate(string $groupId) * - postCreate(\OC\Group\Group $group) * - * @package OC\Group * @since 8.0.0 */ interface IGroupManager { diff --git a/lib/public/IUserManager.php b/lib/public/IUserManager.php index bacfba90ff9..f60e3f068c7 100644 --- a/lib/public/IUserManager.php +++ b/lib/public/IUserManager.php @@ -44,7 +44,6 @@ namespace OCP; * - preUnassignedUserId(string $uid) * - postUnassignedUserId(string $uid) * - * @package OC\User * @since 8.0.0 */ interface IUserManager { diff --git a/lib/public/Share/IProviderFactory.php b/lib/public/Share/IProviderFactory.php index b2587459d85..27218497e53 100644 --- a/lib/public/Share/IProviderFactory.php +++ b/lib/public/Share/IProviderFactory.php @@ -28,7 +28,6 @@ use OC\Share20\Exception\ProviderException; /** * Interface IProviderFactory * - * @package OC\Share20 * @since 9.0.0 */ interface IProviderFactory { |