Closed Headley76 closed 2 years ago
Hi developers,
current version is not PHP8 compatible because of the obsolete function create_function in utils.php line 154.
It should be replaced with something like this:
$fun = function($args) use ($code){ ... };
But I could not successfully hanlde the statements in $code :-(
Can someone fix it?
Thx very much.
sorry -> duplicate issue
I could fix it myself with:
$fun = fn($args) => $code; // @codeCoverageIgnoreStart if (!is_callable($fun))
Perhaps you can also fix it here,
Greetings
Hi developers,
current version is not PHP8 compatible because of the obsolete function create_function in utils.php line 154.
It should be replaced with something like this:
$fun = function($args) use ($code){ ... };
But I could not successfully hanlde the statements in $code :-(
Can someone fix it?
Thx very much.