php-parser/test/code/parser/stmt/class/interface.test

44 lines
857 B
Plaintext
Raw Normal View History

2011-11-27 11:20:35 +01:00
Interface
-----
<?php
interface A extends C, D {
public function a();
}
-----
array(
0: Stmt_Interface(
attrGroups: array(
)
name: Identifier(
name: A
)
2011-11-27 11:20:35 +01:00
extends: array(
0: Name(
parts: array(
0: C
)
)
1: Name(
parts: array(
0: D
)
)
)
stmts: array(
0: Stmt_ClassMethod(
attrGroups: array(
)
2016-07-25 13:53:49 +02:00
flags: MODIFIER_PUBLIC (1)
2011-11-27 11:20:35 +01:00
byRef: false
name: Identifier(
name: a
)
2011-11-27 11:20:35 +01:00
params: array(
)
returnType: null
2011-11-27 11:20:35 +01:00
stmts: null
)
)
)
)