php-parser/lib/PhpParser/Node/Identifier.php

39 lines
842 B
PHP
Raw Normal View History

<?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
*/
public function __construct(string $name, array $attributes = []) {
parent::__construct($attributes);
$this->name = $name;
}
2017-04-28 21:40:59 +02:00
public function getSubNodeNames() : array {
return ['name'];
}
/**
* Get identifier as string.
*
* @return string Identifier as string.
*/
2017-04-28 21:40:59 +02:00
public function __toString() : string {
return $this->name;
}
}