-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: highlightFile()
in BaseExceptionHandler
for PHP 8.3
#8401
Conversation
@michalsn |
|
Yes, I'm not sure why it fails on PHP 7.4... and I don't have it locally to test 😐 |
Silly me... the result for PHP 7.4 is slightly different again. Fixed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you.
Description
Supersedes #8399
Fixes #8398
This PR fixes issues with
highlightFile()
method.The source of the problem is the fact that the
highlight_file()
function has slightly changed its behavior in PHP 8.3.A nice summary can be found here:
https://php.watch/versions/8.3/highlight_file-highlight_string-html-changes
Except for the changes in the
highlight_file()
function, this PR also fixes some issues found in closing openedspan
tags.I added some changes to the way
$source
variable is handled after noticing @kenjis PR: #8399.Checklist: