public function PHP_Token_Includes::getName in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/php-token-stream/src/Token.php \PHP_Token_Includes::getName()
Return value
string
File
- vendor/
phpunit/ php-token-stream/ src/ Token.php, line 246
Class
Code
public function getName() {
if ($this->name === null) {
$this
->process();
}
return $this->name;
}