diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-18 09:15:54 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2021-10-18 09:15:54 +0200 |
commit | 4b8f8c5203da4d04cfd0ca76175130644e11d55b (patch) | |
tree | c5273b8906c8d432af27e99748a73ce62b7065dc /apps/settings/lib | |
parent | 822623109f4f4b3252c04a5c0ccf6757a882e771 (diff) | |
download | nextcloud-server-4b8f8c5203da4d04cfd0ca76175130644e11d55b.tar.gz nextcloud-server-4b8f8c5203da4d04cfd0ca76175130644e11d55b.zip |
Deprecate PHP7.3 for Nextcloud 23
* 7.3 reaches EOL shortly after the release of 23.0.0
* Nextcloud 24 will require 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.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/lib/Controller/CheckSetupController.php b/apps/settings/lib/Controller/CheckSetupController.php index 89abf68d643..e18dfb6028b 100644 --- a/apps/settings/lib/Controller/CheckSetupController.php +++ b/apps/settings/lib/Controller/CheckSetupController.php @@ -299,7 +299,7 @@ class CheckSetupController extends Controller { * @return bool */ protected function isPhpOutdated(): bool { - return PHP_VERSION_ID < 70300; + return PHP_VERSION_ID < 70400; } /** |