1
0
mirror of https://github.com/danog/PHP-Parser.git synced 2024-12-03 09:47:59 +01:00
PHP-Parser/lib/PHPParser/Node/Expr/Variable.php

23 lines
596 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 int $line Line
* @param null|string $docComment Nearest doc comment
*/
public function __construct($name, $line = -1, $docComment = null) {
parent::__construct(
array(
'name' => $name
),
$line, $docComment
);
}
2011-06-05 18:40:04 +02:00
}