1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-13 09:57:25 +01:00
PHP-Parser/lib/PHPParser/Node/Stmt/Property.php

25 lines
784 B
PHP
Raw Normal View History

<?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-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 array $attributes Additional attributes
2011-10-15 19:28:15 +02:00
*/
public function __construct($type, array $props, array $attributes = array()) {
2011-10-15 19:28:15 +02:00
parent::__construct(
array(
'type' => $type,
'props' => $props,
),
$attributes
2011-10-15 19:28:15 +02:00
);
}
}