summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2021-03-03 09:30:37 +0100
committerMáté Kocsis <kocsismate@woohoolabs.com>2021-03-03 09:43:55 +0100
commit91739b8c8988013b6416d91e7d9489e91f0c9fa5 (patch)
treeebcd573fe1318d33c6ce9de0478d2f96c5e9b190
parent2317b81c62bd306c8b7ce7642afcd4e9e1278a95 (diff)
downloadphp-git-91739b8c8988013b6416d91e7d9489e91f0c9fa5.tar.gz
Fix bug #80816 Document the removal of alias class entries from ext/spl
Closes GH-6748 [skip-ci]
-rw-r--r--UPGRADING.INTERNALS6
1 files changed, 6 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index 8c001a67e7..36f24e0626 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -1,6 +1,7 @@
PHP 8.1 INTERNALS UPGRADE NOTES
1. Internal API changes
+ a. Removed Zend APIs
2. Build system changes
@@ -10,6 +11,11 @@ PHP 8.1 INTERNALS UPGRADE NOTES
========================
1. Internal API changes
========================
+ a. The following APIs have been removed from the Zend Engine:
+ - The spl_ce_Aggregate, spl_ce_ArrayAccess, spl_ce_Countable, spl_ce_Iterator, spl_ce_Serializable,
+ spl_ce_Stringable, spl_ce_Traversable alias class entries have been removed in favor of zend_ce_aggregate,
+ zend_ce_arrayaccess, zend_ce_countable, zend_ce_iterator, zend_ce_serializable, zend_ce_stringable,
+ zend_ce_traversable.
========================
2. Build system changes