mirror of
https://github.com/danog/PHP-Parser.git
synced 2024-12-03 17:57:59 +01:00
29 lines
703 B
PHP
29 lines
703 B
PHP
<?php
|
|
|
|
namespace PhpParser\Node\Stmt;
|
|
|
|
use PhpParser\Node;
|
|
|
|
/**
|
|
* @property string $name Name
|
|
* @property null|Node\Expr $default Default
|
|
*/
|
|
class PropertyProperty extends Node\Stmt
|
|
{
|
|
/**
|
|
* Constructs a class property node.
|
|
*
|
|
* @param string $name Name
|
|
* @param null|Node\Expr $default Default value
|
|
* @param array $attributes Additional attributes
|
|
*/
|
|
public function __construct($name, Node\Expr $default = null, array $attributes = array()) {
|
|
parent::__construct(
|
|
array(
|
|
'name' => $name,
|
|
'default' => $default,
|
|
),
|
|
$attributes
|
|
);
|
|
}
|
|
} |