gen_stub: remove unused SimpleType::void()

This commit is contained in:
Daniel Scherzer 2024-10-04 18:09:18 -07:00 committed by Máté Kocsis
parent ad92965474
commit c2ecb71dbb

View file

@ -357,11 +357,6 @@ class SimpleType {
return new SimpleType("object", true); return new SimpleType("object", true);
} }
public static function void(): SimpleType
{
return new SimpleType("void", true);
}
protected function __construct(string $name, bool $isBuiltin) { protected function __construct(string $name, bool $isBuiltin) {
$this->name = $name; $this->name = $name;
$this->isBuiltin = $isBuiltin; $this->isBuiltin = $isBuiltin;