Skip to content

Commit

Permalink
Expand upgrading note for namespaced name change
Browse files Browse the repository at this point in the history
Mention the case from bug #79942.

[ci skip]
  • Loading branch information
nikic committed Aug 10, 2020
1 parent ee16316 commit e81ad40
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion UPGRADING
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ PHP 8.0 UPGRADE NOTES
RFC: https://wiki.php.net/rfc/string_to_number_comparison
. Namespaced names can no longer contain whitespace: While `Foo\Bar` will be
recognized as a namespaced name, `Foo \ Bar` will not. Conversely, reserved
keywords are now permitted as namespace segments.
keywords are now permitted as namespace segments, which may also change the
interpretation of code: `new\x` is now the same as `constant('new\x')`, not
`new \x()`.
RFC: https://wiki.php.net/rfc/namespaced_names_as_token
. Nested ternaries now require explicit parentheses.
RFC: https://wiki.php.net/rfc/ternary_associativity
Expand Down

0 comments on commit e81ad40

Please sign in to comment.