Merge pull request #1940 from pafernandez-oesia/patch-1

Fix Undefined index jit notice
This commit is contained in:
terrafrost 2023-09-18 12:19:32 -05:00 committed by GitHub
commit 4db5893fe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ if (extension_loaded('mbstring')) {
// see https://github.com/php/php-src/issues/11917
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' && function_exists('opcache_get_status') && !defined('PHPSECLIB_ALLOW_JIT')) {
$status = opcache_get_status();
if ($status && $status['jit']['enabled'] && $status['jit']['on']) {
if ($status && isset($status['jit']) && $status['jit']['enabled'] && $status['jit']['on']) {
throw new UnexpectedValueException(
'JIT on Windows is not currently supported'
);