Merge pull request #12819 from nextcloud/feature/noid/bump-eol-version-of-php

PHP 7.0 is end of life
This commit is contained in:
Roeland Jago Douma 2018-12-04 20:11:17 +01:00 committed by GitHub
commit 6c1a3a6d95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -261,7 +261,7 @@ class CheckSetupController extends Controller {
* @return bool
*/
protected function isPhpOutdated() {
if (version_compare(PHP_VERSION, '7.0.0', '<')) {
if (version_compare(PHP_VERSION, '7.1.0', '<')) {
return true;
}