| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- Readonly class
- -----
- <?php
- readonly class A {
- }
- -----
- !!php7
- array(
- 0: Stmt_Class(
- attrGroups: array(
- )
- flags: MODIFIER_READONLY (64)
- name: Identifier(
- name: A
- )
- extends: null
- implements: array(
- )
- stmts: array(
- )
- )
- )
- -----
- <?php
- readonly class A {
- }
- -----
- !!php5
- Syntax error, unexpected T_CLASS, expecting '(' from 3:10 to 3:14
- array(
- 0: Stmt_Class(
- attrGroups: array(
- )
- flags: 0
- name: Identifier(
- name: A
- )
- extends: null
- implements: array(
- )
- stmts: array(
- )
- )
- )
- -----
- <?php
- final readonly class A {
- }
- -----
- !!php7
- array(
- 0: Stmt_Class(
- attrGroups: array(
- )
- flags: MODIFIER_FINAL | MODIFIER_READONLY (96)
- name: Identifier(
- name: A
- )
- extends: null
- implements: array(
- )
- stmts: array(
- )
- )
- )
|