Add the ToS app to the enterprise bundle

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2018-08-09 16:12:48 +02:00
parent 88603e98f8
commit e1d3965883
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
2 changed files with 5 additions and 3 deletions

View File

@ -28,14 +28,14 @@ class EnterpriseBundle extends Bundle {
/**
* {@inheritDoc}
*/
public function getName() {
return (string)$this->l10n->t('Enterprise bundle');
public function getName(): string {
return $this->l10n->t('Enterprise bundle');
}
/**
* {@inheritDoc}
*/
public function getAppIdentifiers() {
public function getAppIdentifiers(): array {
return [
'admin_audit',
'user_ldap',
@ -43,6 +43,7 @@ class EnterpriseBundle extends Bundle {
'files_automatedtagging',
'user_saml',
'files_accesscontrol',
'terms_of_service',
];
}

View File

@ -36,6 +36,7 @@ class EnterpriseBundleTest extends BundleBase {
'files_automatedtagging',
'user_saml',
'files_accesscontrol',
'terms_of_service',
];
}
}