Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / parser / stmt / class / interface.test
1 Interface
2 -----
3 <?php
4
5 interface A extends C, D {
6     public function a();
7 }
8 -----
9 array(
10     0: Stmt_Interface(
11         name: A
12         extends: array(
13             0: Name(
14                 parts: array(
15                     0: C
16                 )
17             )
18             1: Name(
19                 parts: array(
20                     0: D
21                 )
22             )
23         )
24         stmts: array(
25             0: Stmt_ClassMethod(
26                 flags: MODIFIER_PUBLIC (1)
27                 byRef: false
28                 name: a
29                 params: array(
30                 )
31                 returnType: null
32                 stmts: null
33             )
34         )
35     )
36 )