2016-12-22 21:13:42 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace PhpParser\Node;
|
|
|
|
|
|
|
|
use PhpParser\NodeAbstract;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a non-namespaced name. Namespaced names are represented using Name nodes.
|
|
|
|
*/
|
|
|
|
class Identifier extends NodeAbstract
|
|
|
|
{
|
|
|
|
/** @var string Identifier as string */
|
|
|
|
public $name;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructs an identifier node.
|
|
|
|
*
|
|
|
|
* @param string $name Identifier as string
|
|
|
|
* @param array $attributes Additional attributes
|
|
|
|
*/
|
2017-08-13 14:06:08 +02:00
|
|
|
public function __construct(string $name, array $attributes = []) {
|
2016-12-22 21:13:42 +01:00
|
|
|
parent::__construct($attributes);
|
|
|
|
$this->name = $name;
|
|
|
|
}
|
|
|
|
|
2017-04-28 21:40:59 +02:00
|
|
|
public function getSubNodeNames() : array {
|
2017-08-13 14:06:08 +02:00
|
|
|
return ['name'];
|
2016-12-22 21:13:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get identifier as string.
|
|
|
|
*
|
|
|
|
* @return string Identifier as string.
|
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __toString() : string {
|
2016-12-22 21:13:42 +01:00
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
}
|