aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/lib
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-08 11:19:05 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-11-10 09:56:32 +0100
commit75a1721d7d05d1767a3501eb7935fd3772dcb655 (patch)
treec9b16ed8c144f4aeedbc5a160e6276abec59d580 /apps/settings/lib
parentcfa291ec8f68f89e8560b2e297c0b600cb2ea224 (diff)
downloadnextcloud-server-75a1721d7d05d1767a3501eb7935fd3772dcb655.tar.gz
nextcloud-server-75a1721d7d05d1767a3501eb7935fd3772dcb655.zip
Deprecate PHP7.4
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/settings/lib')
-rw-r--r--apps/settings/lib/Controller/CheckSetupController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php
index 96fa6c20fc3..76da8cd2d29 100644
--- a/apps/settings/lib/Controller/CheckSetupController.php
+++ b/apps/settings/lib/Controller/CheckSetupController.php
@@ -330,7 +330,7 @@ class CheckSetupController extends Controller {
* @return bool
*/
protected function isPhpOutdated(): bool {
- return PHP_VERSION_ID < 70400;
+ return PHP_VERSION_ID < 80000;
}
/**