2011-05-27 18:20:44 +02:00
|
|
|
<?php
|
|
|
|
|
2011-05-29 12:20:47 +02:00
|
|
|
/**
|
2011-10-15 19:28:15 +02:00
|
|
|
* @property int $type Modifiers
|
|
|
|
* @property PHPParser_Node_Stmt_PropertyProperty[] $props Properties
|
2011-05-29 12:20:47 +02:00
|
|
|
*/
|
2011-06-05 18:40:04 +02:00
|
|
|
class PHPParser_Node_Stmt_Property extends PHPParser_Node_Stmt
|
2011-05-27 18:20:44 +02:00
|
|
|
{
|
2011-10-15 19:28:15 +02:00
|
|
|
/**
|
|
|
|
* Constructs a class property list node.
|
|
|
|
*
|
|
|
|
* @param int $type Modifiers
|
|
|
|
* @param PHPParser_Node_Stmt_PropertyProperty[] $props Properties
|
|
|
|
* @param int $line Line
|
|
|
|
* @param null|string $docComment Nearest doc comment
|
|
|
|
*/
|
|
|
|
public function __construct($type, array $props, $line = -1, $docComment = null) {
|
|
|
|
parent::__construct(
|
|
|
|
array(
|
|
|
|
'type' => $type,
|
|
|
|
'props' => $props,
|
|
|
|
),
|
|
|
|
$line, $docComment
|
|
|
|
);
|
|
|
|
}
|
2011-05-27 18:20:44 +02:00
|
|
|
}
|