Skip to content

Commit

Permalink
Add user upgrading note for no_separation change
Browse files Browse the repository at this point in the history
I added this to UPGRADING.INTERNALS, but it should also be
mentioned in UPGRADING, as it affects user-visible behavior.

[ci skip]
  • Loading branch information
nikic committed Jul 13, 2020
1 parent 0cab3fa commit 2edc5e0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions UPGRADING
Expand Up @@ -470,6 +470,11 @@ PHP 8.0 UPGRADE NOTES
// With
usort($array, fn($a, $b) => $a <=> $b);

. Any functions accepting callbacks that are not explicitly specified to
accept parameters by reference will now warn if a callback with reference
parameters is used. Examples include array_filter() and array_reduce().
This was already the case for most, but not all, functions previously.

- Sysvmsg:
. msg_get_queue() will now return an SysvMessageQueue object rather than a
resource. Return value checks using is_resource() should be replaced with
Expand Down

0 comments on commit 2edc5e0

Please sign in to comment.