1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-12 17:37:21 +01:00
PHP-Parser/lib/PHPParser/Node/Stmt/PropertyProperty.php

26 lines
804 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
/**
2011-10-15 19:28:15 +02:00
* @property string $name Name
* @property null|PHPParser_Node_Expr $default Default
2011-06-05 18:40:04 +02:00
*/
class PHPParser_Node_Stmt_PropertyProperty extends PHPParser_Node_Stmt
{
2011-10-15 19:28:15 +02:00
/**
* Constructs a class property node.
*
* @param string $name Name
* @param null|PHPParser_Node_Expr $default Default value
* @param int $line Line
* @param null|string $docComment Nearest doc comment
*/
public function __construct($name, PHPParser_Node_Expr $default = null, $line = -1, $docComment = null) {
parent::__construct(
array(
'name' => $name,
'default' => $default,
),
$line, $docComment
);
}
2011-06-05 18:40:04 +02:00
}