mirror of
https://github.com/phabelio/PHP-Parser.git
synced 2024-12-02 17:38:19 +01:00
35 lines
619 B
Plaintext
35 lines
619 B
Plaintext
Interface
|
|
-----
|
|
<?php
|
|
|
|
interface A extends C, D {
|
|
public function a();
|
|
}
|
|
-----
|
|
array(
|
|
0: Stmt_Interface(
|
|
name: A
|
|
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
|
|
params: array(
|
|
)
|
|
stmts: null
|
|
)
|
|
)
|
|
)
|
|
) |