N°2743 - Upgrade libraries php-parser

php composer.phar update  nikic/php-parser
This commit is contained in:
acognet
2022-07-01 10:45:55 +02:00
parent 0ff25728a4
commit 29f23fa992
24 changed files with 1691 additions and 1591 deletions

View File

@@ -11,7 +11,7 @@ class Const_ extends NodeAbstract
/** @var Expr Value */
public $value;
/** @var Name Namespaced name (if using NameResolver) */
/** @var Name|null Namespaced name (if using NameResolver) */
public $namespacedName;
/**
@@ -30,7 +30,7 @@ class Const_ extends NodeAbstract
public function getSubNodeNames() : array {
return ['name', 'value'];
}
public function getType() : string {
return 'Const';
}