php-parser/lib/PHPParser/Node/Expr/Variable.php

22 lines
530 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
/**
* @property string|PHPParser_Node_Expr $name Name
2011-06-05 18:40:04 +02:00
*/
class PHPParser_Node_Expr_Variable extends PHPParser_Node_Expr
2011-06-05 18:40:04 +02:00
{
/**
* Constructs a variable node.
*
* @param string|PHPParser_Node_Expr $name Name
* @param array $attributes Additional attributes
*/
public function __construct($name, array $attributes = array()) {
parent::__construct(
array(
'name' => $name
),
$attributes
);
}
2011-06-05 18:40:04 +02:00
}