From c2ecb71dbbfb3754d044ea795c7d80c80a06f223 Mon Sep 17 00:00:00 2001 From: Daniel Scherzer Date: Fri, 4 Oct 2024 18:09:18 -0700 Subject: [PATCH] gen_stub: remove unused `SimpleType::void()` --- build/gen_stub.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build/gen_stub.php b/build/gen_stub.php index 153e3a681c0..f49958243cf 100755 --- a/build/gen_stub.php +++ b/build/gen_stub.php @@ -357,11 +357,6 @@ class SimpleType { return new SimpleType("object", true); } - public static function void(): SimpleType - { - return new SimpleType("void", true); - } - protected function __construct(string $name, bool $isBuiltin) { $this->name = $name; $this->isBuiltin = $isBuiltin;