From 86c6cd3cc099d2480932ede03c12cea01e625c94 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Sun, 26 Apr 2026 21:56:28 +0000
Subject: [PATCH] =Requiring files based on Site class settings

---
 inc/registrar/helpers/MakeVerification.php |   14 +-------------
 1 files changed, 1 insertions(+), 13 deletions(-)

diff --git a/inc/registrar/helpers/MakeVerification.php b/inc/registrar/helpers/MakeVerification.php
index 6574bdb..631df95 100644
--- a/inc/registrar/helpers/MakeVerification.php
+++ b/inc/registrar/helpers/MakeVerification.php
@@ -11,19 +11,7 @@
 	protected CustomTable $table;
 	public function __construct()
 	{
-		$this->defineTables();
+//		$this->defineTables();
 	}
 
-	protected function defineTables():void
-	{
-		$types = implode(',', array_map(function($item) { return "`{$item}`"; },Registrar::getFeatured('verify_entry')));
-
-		$table = CustomTable::for('verify_entry');
-
-		$table->setColumns([
-			'id'			=> 'bigint(20) unsigned NOT NULL AUTO_INCREMENT',
-			'user_id'		=> "{$table->getUserIDType()} NOT NULL",
-			'content'
-		])
-	}
 }

--
Gitblit v1.10.0