1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-13 01:47:22 +01:00
PHP-Parser/test/code/parser/stmt/class/interface.test

35 lines
619 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(
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(
type: 1
byRef: false
name: a
2011-11-27 11:20:35 +01:00
params: array(
)
stmts: null
)
)
)
)