3ae3ecd9b2490d5cf774271c349b7ac28d38ed71
[yaffs-website] / vendor / nikic / php-parser / lib / PhpParser / Node / Expr / Variable.php
1 <?php
2
3 namespace PhpParser\Node\Expr;
4
5 use PhpParser\Node\Expr;
6
7 class Variable extends Expr
8 {
9     /** @var string|Expr Name */
10     public $name;
11
12     /**
13      * Constructs a variable node.
14      *
15      * @param string|Expr $name       Name
16      * @param array                      $attributes Additional attributes
17      */
18     public function __construct($name, array $attributes = array()) {
19         parent::__construct($attributes);
20         $this->name = $name;
21     }
22
23     public function getSubNodeNames() {
24         return array('name');
25     }
26 }