summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2015-02-19 23:02:04 +0100
committerStanislav Malyshev <stas@php.net>2015-02-19 23:03:51 +0100
commit543f0112055ed170d61738d301db9e509b44630c (patch)
treea59cf2616bfa4fcd3fb3aab35922f8d950d5900c
parent34ff6bbb0df152694e648161b149d41270fccdcb (diff)
downloadphp-git-543f0112055ed170d61738d301db9e509b44630c.tar.gz
add NEWS for <=>
-rw-r--r--NEWS1
-rw-r--r--UPGRADING2
2 files changed, 3 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index fdbd25bbe2..bc93ebcb74 100644
--- a/NEWS
+++ b/NEWS
@@ -34,6 +34,7 @@
. Implemented FR #55467 (phpinfo: PHP Variables with $ and single quotes). (Kalle)
. Fixed bug #55415 (php_info produces invalid anchor names). (Kalle, Johannes)
. Added ?? operator. (Andrea)
+ . Added <=> operator. (Andrea)
. Added \u{xxxxx} Unicode Codepoint Escape Syntax. (Andrea)
. Fixed oversight where define() did not support arrays yet const syntax did. (Andrea, Dmitry)
. Use "integer" and "float" instead of "long" and "double" in ZPP, type hint and conversion error messages. (Andrea)
diff --git a/UPGRADING b/UPGRADING
index a4c9374534..af84ee94fe 100644
--- a/UPGRADING
+++ b/UPGRADING
@@ -398,6 +398,8 @@ Other
. Added \u{xxxxxx} Unicode Codepoint Escape Syntax for double-quoted strings
and heredocs.
. define() now supports arrays as constant values, fixing an oversight where define() did not support arrays yet const syntax did.
+ . Added the comparison operator (<=>), aka the spaceship operator.
+ (RFC: https://wiki.php.net/rfc/combined-comparison-operator)
========================================
3. Changes in SAPI modules