1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-04 02:07:59 +01:00
PHP-Parser/lib/PhpParser/Node/Expr/Variable.php

26 lines
523 B
PHP
Raw Normal View History

2011-06-05 18:40:04 +02:00
<?php
namespace PhpParser\Node\Expr;
use PhpParser\Node\Expr;
2011-06-05 18:40:04 +02:00
/**
* @property string|Expr $name Name
2011-06-05 18:40:04 +02:00
*/
class Variable extends Expr
2011-06-05 18:40:04 +02:00
{
/**
* Constructs a variable node.
*
* @param string|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
}