You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Added support for PHP 8.0
BC Break: Dropped support of PHP 7.2
BC Break: Added new keyword reserved in php 8 - match
BC Break: Updated mixed keyword to reflect changes in php 8
BC Break: Updated all keywords except namespace and __halt_compiler
to reflect that they can be used as namespace parts since php 8.0
BC Break: Added new method isReservedClassName to check for reserved words in
class/trait/interface names. The method isReservedNamespaceName should
be now used only for checking for reserved words in namespaces.
These changes are necessary because php 8 changed the reserved words behavior for namespaces.