| 123456789101112131415161718192021222324252627282930313233343536373839 |
- Braced namespaces
- -----
- <?php
- namespace Foo\Bar {
- foo;
- }
- namespace {
- bar;
- }
- -----
- array(
- 0: Stmt_Namespace(
- name: Name(
- name: Foo\Bar
- )
- stmts: array(
- 0: Stmt_Expression(
- expr: Expr_ConstFetch(
- name: Name(
- name: foo
- )
- )
- )
- )
- )
- 1: Stmt_Namespace(
- name: null
- stmts: array(
- 0: Stmt_Expression(
- expr: Expr_ConstFetch(
- name: Name(
- name: bar
- )
- )
- )
- )
- )
- )
|