fix: Remove unnecessary disablement of autoload in class_exists usage#364
Merged
ezyang merged 1 commit intoezyang:masterfrom Feb 6, 2023
Merged
fix: Remove unnecessary disablement of autoload in class_exists usage#364ezyang merged 1 commit intoezyang:masterfrom
class_exists usage#364ezyang merged 1 commit intoezyang:masterfrom
Conversation
class_exists usageclass_exists usage
ezyang
approved these changes
Feb 6, 2023
|
Hi @ezyang. Would it be possible to tag a new release which includes this fix? |
|
🎉 This PR is included in version 4.17.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR removes the usage of the secondary argument in
class_exists()checks in HTML Purifier. This secondary argument is being used to disable autoloading the class if it has not yet been autoloaded.The current implementation breaks composer based projects where a class may not have been included or required yet via composers autoloader, but has been registered as a definition cache:
Upon usage:
This exception can be resolved by
require'ing orinclude'ing the class manually, or via aspl_autoload_call($cache):However, this should not be necessary in todays PHP, as class strings are frequently used as a way to dynamically register implementations of things, and removing the secondary argument in
class_exists()results in the definition cache being properly registered and used.