Simplify further

This commit is contained in:
Sobuno
2025-01-02 23:36:00 +01:00
parent af7a4b5d3d
commit a62916a63d
5 changed files with 87 additions and 188 deletions

View File

@@ -21,9 +21,4 @@ class StringNode extends Node
{
return $this->value;
}
public function __toString(): string
{
return ($this->prohibited ? '-' : '') . $this->value;
}
}