MDL-73586 phpunit: Simply, remove the setting

It's not available since PHP 7.0, so no use at all.
This commit is contained in:
Eloy Lafuente (stronk7) 2022-03-08 14:11:26 +01:00
parent cb95e0b707
commit 2e48f924e7

View File

@ -39,8 +39,6 @@ ini_set('log_errors', '1');
if (ini_get('opcache.enable') and strtolower(ini_get('opcache.enable')) !== 'off') {
if (!ini_get('opcache.save_comments') or strtolower(ini_get('opcache.save_comments')) === 'off') {
ini_set('opcache.enable', 0);
} else {
ini_set('opcache.load_comments', 1);
}
}