Add PHP 8.5.0 deprecation changelog entries across 13 pages#5369
Open
lacatoire wants to merge 1 commit intophp:masterfrom
Open
Add PHP 8.5.0 deprecation changelog entries across 13 pages#5369lacatoire wants to merge 1 commit intophp:masterfrom
lacatoire wants to merge 1 commit intophp:masterfrom
Conversation
- curl_share_close: deprecated (CurlShareHandle freed automatically) - finfo_close: deprecated (finfo objects freed automatically) - finfo_buffer: $context parameter deprecated - ReflectionMethod::setAccessible: deprecated (no effect since 8.1) - ReflectionProperty::setAccessible: deprecated (no effect since 8.1) - ReflectionClass::getConstant: deprecated for missing constants - ReflectionProperty::getDefaultValue: deprecated for properties without defaults - SplObjectStorage::contains: deprecated in favour of offsetExists - SplObjectStorage::attach: deprecated in favour of offsetSet - SplObjectStorage::detach: deprecated in favour of offsetUnset - spl_autoload_unregister: passing spl_autoload_call deprecated - chr: passing integers outside [0, 255] deprecated - ord: passing non-single-byte strings deprecated
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.
Summary
Add missing changelog entries for PHP 8.5.0 deprecations to individual reference pages:
cURL:
curl_share_close: deprecated (CurlShareHandle freed automatically)FileInfo:
finfo_close: deprecated (finfo objects freed automatically)finfo_buffer:$contextparameter deprecated (ignored)Reflection:
ReflectionMethod::setAccessible: deprecated (no effect since 8.1)ReflectionProperty::setAccessible: deprecated (no effect since 8.1)ReflectionClass::getConstant: deprecated for missing constantsReflectionProperty::getDefaultValue: deprecated for properties without defaultsSPL:
SplObjectStorage::contains: deprecated in favour ofoffsetExistsSplObjectStorage::attach: deprecated in favour ofoffsetSetSplObjectStorage::detach: deprecated in favour ofoffsetUnsetspl_autoload_unregister: passingspl_autoload_calldeprecatedStrings:
chr: passing integers outside [0, 255] deprecatedord: passing non-single-byte strings deprecatedHelps with #4886