diff --git a/lib/private/App/AppStore/Bundles/Bundle.php b/lib/private/App/AppStore/Bundles/Bundle.php index 596f02d51e5..47efc4e0cce 100644 --- a/lib/private/App/AppStore/Bundles/Bundle.php +++ b/lib/private/App/AppStore/Bundles/Bundle.php @@ -50,13 +50,6 @@ abstract class Bundle { */ public abstract function getName(); - /** - * Get the description of the bundle - * - * @return string - */ - public abstract function getDescription(); - /** * Get the list of app identifiers in the bundle * diff --git a/lib/private/App/AppStore/Bundles/CoreBundle.php b/lib/private/App/AppStore/Bundles/CoreBundle.php index b400d0d0f6f..a87292b9ec9 100644 --- a/lib/private/App/AppStore/Bundles/CoreBundle.php +++ b/lib/private/App/AppStore/Bundles/CoreBundle.php @@ -27,14 +27,7 @@ class CoreBundle extends Bundle { * {@inheritDoc} */ public function getName() { - return (string)$this->l10n->t('Core bundle'); - } - - /** - * {@inheritDoc} - */ - public function getDescription() { - return (string)$this->l10n->t('Default apps required by Nextcloud'); + return 'Core bundle'; } /** diff --git a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php index ed7c1180785..6d43a6210fa 100644 --- a/lib/private/App/AppStore/Bundles/EnterpriseBundle.php +++ b/lib/private/App/AppStore/Bundles/EnterpriseBundle.php @@ -30,13 +30,6 @@ class EnterpriseBundle extends Bundle { return (string)$this->l10n->t('Enterprise bundle'); } - /** - * {@inheritDoc} - */ - public function getDescription() { - return (string)$this->l10n->t('Apps for the Enterprise.'); - } - /** * {@inheritDoc} */ diff --git a/lib/private/App/AppStore/Bundles/GroupwareBundle.php b/lib/private/App/AppStore/Bundles/GroupwareBundle.php index b05a54accf5..f6c7d336038 100644 --- a/lib/private/App/AppStore/Bundles/GroupwareBundle.php +++ b/lib/private/App/AppStore/Bundles/GroupwareBundle.php @@ -30,13 +30,6 @@ class GroupwareBundle extends Bundle { return (string)$this->l10n->t('Groupware bundle'); } - /** - * {@inheritDoc} - */ - public function getDescription() { - return (string)$this->l10n->t('Apps for groupware functionalities.'); - } - /** * {@inheritDoc} */