aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib/AppInfo
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-10-26 16:07:11 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-11-07 12:25:03 +0100
commitac3da13b38d2bb4ec658b5f89e35d56271db3f22 (patch)
treec1f0525baa6447f1a491d33e5c538203ed413aa8 /apps/settings/lib/AppInfo
parent086d3ceecc211f255dd24e6ffaed553a6ca2046d (diff)
downloadnextcloud-server-ac3da13b38d2bb4ec658b5f89e35d56271db3f22.tar.gz
nextcloud-server-ac3da13b38d2bb4ec658b5f89e35d56271db3f22.zip
Migrate Freetype check to SetupCheck API
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/settings/lib/AppInfo')
-rw-r--r--apps/settings/lib/AppInfo/Application.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/settings/lib/AppInfo/Application.php b/apps/settings/lib/AppInfo/Application.php
index 518dc88bfa0..7516a307d00 100644
--- a/apps/settings/lib/AppInfo/Application.php
+++ b/apps/settings/lib/AppInfo/Application.php
@@ -58,6 +58,7 @@ use OCA\Settings\SetupChecks\LegacySSEKeyFormat;
use OCA\Settings\SetupChecks\MemcacheConfigured;
use OCA\Settings\SetupChecks\PhpDefaultCharset;
use OCA\Settings\SetupChecks\PhpModules;
+use OCA\Settings\SetupChecks\PhpFreetypeSupport;
use OCA\Settings\SetupChecks\PhpGetEnv;
use OCA\Settings\SetupChecks\PhpOutdated;
use OCA\Settings\SetupChecks\PhpOutputBuffering;
@@ -164,6 +165,7 @@ class Application extends App implements IBootstrap {
$context->registerSetupCheck(MemcacheConfigured::class);
$context->registerSetupCheck(PhpDefaultCharset::class);
$context->registerSetupCheck(PhpModules::class);
+ $context->registerSetupCheck(PhpFreetypeSupport::class);
$context->registerSetupCheck(PhpGetEnv::class);
$context->registerSetupCheck(PhpOutdated::class);
$context->registerSetupCheck(PhpOutputBuffering::class);