mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-11-27 04:14:44 +01:00
40 lines
570 B
Plaintext
40 lines
570 B
Plaintext
Class
|
|
-----
|
|
<?php
|
|
|
|
class Foo
|
|
{
|
|
var $a = 'foo';
|
|
private $b = 'bar';
|
|
static $c = 'baz';
|
|
function test()
|
|
{
|
|
$this->a = 'bar';
|
|
echo 'test';
|
|
}
|
|
|
|
protected function baz() {}
|
|
public function foo() {}
|
|
abstract static function bar() {}
|
|
}
|
|
-----
|
|
class Foo
|
|
{
|
|
var $a = 'foo';
|
|
private $b = 'bar';
|
|
static $c = 'baz';
|
|
function test()
|
|
{
|
|
$this->a = 'bar';
|
|
echo 'test';
|
|
}
|
|
protected function baz()
|
|
{
|
|
}
|
|
public function foo()
|
|
{
|
|
}
|
|
static abstract function bar()
|
|
{
|
|
}
|
|
} |