* zin: fix method name.

This commit is contained in:
sunhao
2024-02-26 17:09:46 +08:00
parent c92f4bd45f
commit a5df1d39eb
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ class h extends node
return $tagName === null ? '' : $tagName;
}
public function type(): string
public function fullType(): string
{
return 'h::' . $this->tagName();
}
+1 -1
View File
@@ -22,7 +22,7 @@ class text extends node
'html' => '?bool',
);
public function type(): string
public function fullType(): string
{
return 'node::' . $this->type();
}