Dep: update

주로 PHAN
This commit is contained in:
2021-08-06 22:39:09 +09:00
parent 404cd24855
commit 21e7a4d966
1098 changed files with 92137 additions and 33228 deletions
+4 -1
View File
@@ -6,6 +6,8 @@
namespace Microsoft\PhpParser;
use ReturnTypeWillChange;
use function substr;
class Token implements \JsonSerializable {
@@ -61,7 +63,7 @@ class Token implements \JsonSerializable {
/**
* @return int
*/
public function getFullStart() {
public function getFullStartPosition() {
return $this->fullStart;
}
@@ -110,6 +112,7 @@ class Token implements \JsonSerializable {
return $mapToKindName[$kind] ?? $kind;
}
#[ReturnTypeWillChange]
public function jsonSerialize() {
$kindName = $this->getTokenKindNameFromValue($this->kind);