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

51 lines
1.1 KiB
Plaintext
Raw Normal View History

2011-11-27 11:20:35 +01:00
Abstract class
-----
<?php
abstract class A {
public function a() {}
abstract public function b();
}
-----
array(
0: Stmt_Class(
attrGroups: array(
)
2016-07-25 13:53:49 +02:00
flags: MODIFIER_ABSTRACT (16)
name: Identifier(
name: A
)
2011-11-27 11:20:35 +01:00
extends: null
implements: array(
)
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: array(
)
)
1: Stmt_ClassMethod(
attrGroups: array(
)
2016-07-25 13:53:49 +02:00
flags: MODIFIER_PUBLIC | MODIFIER_ABSTRACT (17)
2011-11-27 11:20:35 +01:00
byRef: false
name: Identifier(
name: b
)
2011-11-27 11:20:35 +01:00
params: array(
)
returnType: null
2011-11-27 11:20:35 +01:00
stmts: null
)
)
)
)