diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-04-14 14:30:00 +0200 |
---|---|---|
committer | Côme Chilliet <come.chilliet@nextcloud.com> | 2025-04-14 14:30:00 +0200 |
commit | 92038229fa8d911166aee15c10ec5ee4554fb690 (patch) | |
tree | 2dd495e8de9bd289b28a2db660541cb156c2a1e7 /lib/private/AppFramework/Bootstrap | |
parent | 988da9622c56bf9bd00ceb22c7b11acc8f6242c8 (diff) | |
download | nextcloud-server-92038229fa8d911166aee15c10ec5ee4554fb690.tar.gz nextcloud-server-92038229fa8d911166aee15c10ec5ee4554fb690.zip |
fix: Remove support for app.php loading
It has been deprecated for a long time, and the last known active
application to use it (user_saml) is now migrated the modern API.
Presence of the file is still checked in order to log an error.
This behavior may be removed as well in a few versions.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'lib/private/AppFramework/Bootstrap')
-rw-r--r-- | lib/private/AppFramework/Bootstrap/Coordinator.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/AppFramework/Bootstrap/Coordinator.php b/lib/private/AppFramework/Bootstrap/Coordinator.php index 4e78450fa04..2b04d291730 100644 --- a/lib/private/AppFramework/Bootstrap/Coordinator.php +++ b/lib/private/AppFramework/Bootstrap/Coordinator.php @@ -30,8 +30,8 @@ class Coordinator { /** @var RegistrationContext|null */ private $registrationContext; - /** @var string[] */ - private $bootedApps = []; + /** @var array<string,true> */ + private array $bootedApps = []; public function __construct( private IServerContainer $serverContainer, |