From 53e48a1301fe18108fc5264b48eacd27118ab435 Mon Sep 17 00:00:00 2001 From: ildyria Date: Tue, 23 Dec 2025 10:15:37 +0100 Subject: [PATCH] Remove validate from interface --- src/Contract/VerifyInterface.php | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Contract/VerifyInterface.php b/src/Contract/VerifyInterface.php index e2c0013..7061b1a 100644 --- a/src/Contract/VerifyInterface.php +++ b/src/Contract/VerifyInterface.php @@ -53,11 +53,4 @@ public function is_signature(): bool; * @return T */ public function when(mixed $valIfTrue, mixed $valIfFalse, Status $required_status = Status::SUPPORTER_EDITION): mixed; - - /** - * Validate installation. - * - * @return bool - */ - public function validate(): bool; }