diff options
author | Côme Chilliet <91878298+come-nc@users.noreply.github.com> | 2023-11-14 10:50:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-14 10:50:31 +0100 |
commit | 70acf44a45c9139b0b26ab99c55e352cd0f2b073 (patch) | |
tree | fa8954ad3f37e9fc1eee41af1cbf4bd4a18ccfda /apps/settings/lib/AppInfo/Application.php | |
parent | be76f0d08840edd186987934f0bb9b557a39c18e (diff) | |
parent | 749523603403f11c2958a51fb64a7035d9f4eb73 (diff) | |
download | nextcloud-server-70acf44a45c9139b0b26ab99c55e352cd0f2b073.tar.gz nextcloud-server-70acf44a45c9139b0b26ab99c55e352cd0f2b073.zip |
Merge pull request #41086 from nextcloud/feat/migrate-memory-limit-setup-check
Migrate memory_limit check to new SetupCheck API
Diffstat (limited to 'apps/settings/lib/AppInfo/Application.php')
-rw-r--r-- | apps/settings/lib/AppInfo/Application.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/settings/lib/AppInfo/Application.php b/apps/settings/lib/AppInfo/Application.php index d2539864708..1693ec302e5 100644 --- a/apps/settings/lib/AppInfo/Application.php +++ b/apps/settings/lib/AppInfo/Application.php @@ -58,6 +58,7 @@ use OCA\Settings\SetupChecks\MemcacheConfigured; use OCA\Settings\SetupChecks\PhpDefaultCharset; use OCA\Settings\SetupChecks\PhpFreetypeSupport; use OCA\Settings\SetupChecks\PhpGetEnv; +use OCA\Settings\SetupChecks\PhpMemoryLimit; use OCA\Settings\SetupChecks\PhpModules; use OCA\Settings\SetupChecks\PhpOutdated; use OCA\Settings\SetupChecks\PhpOutputBuffering; @@ -163,9 +164,10 @@ class Application extends App implements IBootstrap { $context->registerSetupCheck(LegacySSEKeyFormat::class); $context->registerSetupCheck(MemcacheConfigured::class); $context->registerSetupCheck(PhpDefaultCharset::class); - $context->registerSetupCheck(PhpModules::class); $context->registerSetupCheck(PhpFreetypeSupport::class); $context->registerSetupCheck(PhpGetEnv::class); + $context->registerSetupCheck(PhpMemoryLimit::class); + $context->registerSetupCheck(PhpModules::class); $context->registerSetupCheck(PhpOutdated::class); $context->registerSetupCheck(PhpOutputBuffering::class); $context->registerSetupCheck(RandomnessSecure::class); |