-
Notifications
You must be signed in to change notification settings - Fork 736
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
Update SplFixedArray
methods + add PHP 8.2.0 changelog entry
#2618
Conversation
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.
The documentation documents both PHP 7 and 8 so removing the deprecated methods is a no go.
Has the version.xml file been updated to indicate they have been deprecated and removed? As that would help a bit.
f422238
to
32e09ac
Compare
Thanks for the tip about |
32e09ac
to
4cb8aaf
Compare
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.
@kocsismate can you have a quick look?
reference/spl/splfixedarray.xml
Outdated
<entry>8.2.0</entry> | ||
<entry> | ||
<function>__serialize</function> and <function>__unserialize</function> | ||
functions are added to <classname>SplFixedArray</classname>. |
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.
functions are added to <classname>SplFixedArray</classname>. | |
magic methods are added to <classname>SplFixedArray</classname>. |
<refentry xml:id="splfixedarray.unserialize" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<refnamediv> | ||
<refname>SplFixedArray::__unserialize</refname> | ||
<refpurpose>Deserializes the <parameter>data</parameter> parameter into a SplFixedArray object</refpurpose> |
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.
<refpurpose>Deserializes the <parameter>data</parameter> parameter into a SplFixedArray object</refpurpose> | |
<refpurpose>Deserializes the <parameter>data</parameter> parameter into an SplFixedArray object</refpurpose> |
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.
Updated both, thanks for the review!
3bb96c6
to
e8c554a
Compare
reference/spl/splfixedarray.xml
Outdated
<function>__serialize</function> and <function>__unserialize</function> | ||
magic methods are added to <classname>SplFixedArray</classname>. |
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.
<function>__serialize</function> and <function>__unserialize</function> | |
magic methods are added to <classname>SplFixedArray</classname>. | |
The <methodname>SplFixedArray::__serialize</methodname> and <methodname>SplFixedArray::__unserialize</methodname> | |
magic methods have been added to <classname>SplFixedArray</classname>. |
Or something along those lines. :)
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.
Updated, that's better 👍
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.
One comment and then good to land
e8c554a
to
a391a8a
Compare
Fix #1702