2011-11-27 11:20:35 +01:00
|
|
|
Class declaration
|
|
|
|
-----
|
|
|
|
<?php
|
|
|
|
|
|
|
|
class A extends B implements C, D {
|
|
|
|
const A = 'B', C = 'D';
|
|
|
|
|
|
|
|
public $a = 'b', $c = 'd';
|
|
|
|
protected $e;
|
|
|
|
private $f;
|
|
|
|
|
|
|
|
public function a() {}
|
2015-03-12 13:17:31 +01:00
|
|
|
public static function b($a) {}
|
|
|
|
public final function c() : B {}
|
2011-11-27 11:20:35 +01:00
|
|
|
protected function d() {}
|
|
|
|
private function e() {}
|
|
|
|
}
|
|
|
|
-----
|
|
|
|
array(
|
|
|
|
0: Stmt_Class(
|
2016-07-25 13:33:19 +02:00
|
|
|
flags: 0
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: A
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
extends: Name(
|
|
|
|
parts: array(
|
|
|
|
0: B
|
|
|
|
)
|
|
|
|
)
|
|
|
|
implements: array(
|
|
|
|
0: Name(
|
|
|
|
parts: array(
|
|
|
|
0: C
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Name(
|
|
|
|
parts: array(
|
|
|
|
0: D
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
stmts: array(
|
|
|
|
0: Stmt_ClassConst(
|
2016-07-25 13:33:19 +02:00
|
|
|
flags: 0
|
2011-11-27 11:20:35 +01:00
|
|
|
consts: array(
|
|
|
|
0: Const(
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: A
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
value: Scalar_String(
|
|
|
|
value: B
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Const(
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: C
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
value: Scalar_String(
|
|
|
|
value: D
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Stmt_Property(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PUBLIC (1)
|
2019-01-05 12:06:18 +01:00
|
|
|
type: null
|
2011-11-27 11:20:35 +01:00
|
|
|
props: array(
|
|
|
|
0: Stmt_PropertyProperty(
|
2017-04-28 19:09:39 +02:00
|
|
|
name: VarLikeIdentifier(
|
|
|
|
name: a
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
default: Scalar_String(
|
|
|
|
value: b
|
|
|
|
)
|
|
|
|
)
|
|
|
|
1: Stmt_PropertyProperty(
|
2017-04-28 19:09:39 +02:00
|
|
|
name: VarLikeIdentifier(
|
|
|
|
name: c
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
default: Scalar_String(
|
|
|
|
value: d
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
2: Stmt_Property(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PROTECTED (2)
|
2019-01-05 12:06:18 +01:00
|
|
|
type: null
|
2011-11-27 11:20:35 +01:00
|
|
|
props: array(
|
|
|
|
0: Stmt_PropertyProperty(
|
2017-04-28 19:09:39 +02:00
|
|
|
name: VarLikeIdentifier(
|
|
|
|
name: e
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
default: null
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
3: Stmt_Property(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PRIVATE (4)
|
2019-01-05 12:06:18 +01:00
|
|
|
type: null
|
2011-11-27 11:20:35 +01:00
|
|
|
props: array(
|
|
|
|
0: Stmt_PropertyProperty(
|
2017-04-28 19:09:39 +02:00
|
|
|
name: VarLikeIdentifier(
|
|
|
|
name: f
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
default: null
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
4: Stmt_ClassMethod(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PUBLIC (1)
|
2011-11-27 11:20:35 +01:00
|
|
|
byRef: false
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: a
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
params: array(
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: null
|
2011-11-27 11:20:35 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
5: Stmt_ClassMethod(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PUBLIC | MODIFIER_STATIC (9)
|
2011-11-27 11:20:35 +01:00
|
|
|
byRef: false
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: b
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
params: array(
|
2015-03-12 13:17:31 +01:00
|
|
|
0: Param(
|
2020-06-07 18:52:12 +02:00
|
|
|
flags: 0
|
2015-03-12 13:17:31 +01:00
|
|
|
type: null
|
|
|
|
byRef: false
|
|
|
|
variadic: false
|
2017-01-19 23:38:40 +01:00
|
|
|
var: Expr_Variable(
|
2017-01-19 23:23:38 +01:00
|
|
|
name: a
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
default: null
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: null
|
2011-11-27 11:20:35 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
6: Stmt_ClassMethod(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PUBLIC | MODIFIER_FINAL (33)
|
2011-11-27 11:20:35 +01:00
|
|
|
byRef: false
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: c
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
params: array(
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: Name(
|
|
|
|
parts: array(
|
|
|
|
0: B
|
|
|
|
)
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
7: Stmt_ClassMethod(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PROTECTED (2)
|
2011-11-27 11:20:35 +01:00
|
|
|
byRef: false
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: d
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
params: array(
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: null
|
2011-11-27 11:20:35 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
8: Stmt_ClassMethod(
|
2016-07-25 13:53:49 +02:00
|
|
|
flags: MODIFIER_PRIVATE (4)
|
2011-11-27 11:20:35 +01:00
|
|
|
byRef: false
|
2017-04-28 19:09:39 +02:00
|
|
|
name: Identifier(
|
|
|
|
name: e
|
|
|
|
)
|
2011-11-27 11:20:35 +01:00
|
|
|
params: array(
|
|
|
|
)
|
2015-03-12 13:17:31 +01:00
|
|
|
returnType: null
|
2011-11-27 11:20:35 +01:00
|
|
|
stmts: array(
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2016-07-25 13:33:19 +02:00
|
|
|
)
|