This repository has been archived on 2025-08-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
dumbo/vendor/nikic/php-parser/test/code/parser/stmt/class/php4Style.test
2014-11-25 16:42:40 +01:00

38 lines
727 B
Plaintext

PHP 4 style declarations
-----
<?php
class A {
var $foo;
function bar() {}
}
-----
array(
0: Stmt_Class(
type: 0
extends: null
implements: array(
)
stmts: array(
0: Stmt_Property(
type: 1
props: array(
0: Stmt_PropertyProperty(
name: foo
default: null
)
)
)
1: Stmt_ClassMethod(
type: 1
byRef: false
params: array(
)
stmts: array(
)
name: bar
)
)
name: A
)
)