2017-08-18 22:57:27 +02:00
|
|
|
<?php declare(strict_types=1);
|
2016-12-22 21:13:42 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2017-08-15 22:56:53 +02:00
|
|
|
private static $specialClassNames = [
|
|
|
|
'self' => true,
|
|
|
|
'parent' => true,
|
|
|
|
'static' => true,
|
|
|
|
];
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
/**
|
|
|
|
* 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 = []) {
|
2019-05-12 14:55:21 +02:00
|
|
|
$this->attributes = $attributes;
|
2016-12-22 21:13:42 +01:00
|
|
|
$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
|
|
|
}
|
|
|
|
|
2017-10-03 20:57:48 +02:00
|
|
|
/**
|
|
|
|
* Get identifier as string.
|
|
|
|
*
|
|
|
|
* @return string Identifier as string.
|
|
|
|
*/
|
|
|
|
public function toString() : string {
|
|
|
|
return $this->name;
|
|
|
|
}
|
|
|
|
|
2017-08-15 22:48:24 +02:00
|
|
|
/**
|
|
|
|
* Get lowercased identifier as string.
|
|
|
|
*
|
|
|
|
* @return string Lowercased identifier as string
|
|
|
|
*/
|
|
|
|
public function toLowerString() : string {
|
|
|
|
return strtolower($this->name);
|
|
|
|
}
|
|
|
|
|
2017-08-15 22:56:53 +02:00
|
|
|
/**
|
|
|
|
* Checks whether the identifier is a special class name (self, parent or static).
|
|
|
|
*
|
|
|
|
* @return bool Whether identifier is a special class name
|
|
|
|
*/
|
|
|
|
public function isSpecialClassName() : bool {
|
|
|
|
return isset(self::$specialClassNames[strtolower($this->name)]);
|
|
|
|
}
|
|
|
|
|
2016-12-22 21:13:42 +01:00
|
|
|
/**
|
|
|
|
* Get identifier as string.
|
|
|
|
*
|
2017-08-15 22:48:24 +02:00
|
|
|
* @return string Identifier as string
|
2016-12-22 21:13:42 +01:00
|
|
|
*/
|
2017-04-28 21:40:59 +02:00
|
|
|
public function __toString() : string {
|
2016-12-22 21:13:42 +01:00
|
|
|
return $this->name;
|
|
|
|
}
|
2017-11-12 21:25:57 +01:00
|
|
|
|
2018-01-10 18:57:48 +01:00
|
|
|
public function getType() : string {
|
2017-11-12 21:25:57 +01:00
|
|
|
return 'Identifier';
|
|
|
|
}
|
2016-12-22 21:13:42 +01:00
|
|
|
}
|