From 3b83905603d44b1a08f8b2b36a605808ce686ad6 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Tue, 02 Jun 2026 00:46:48 +0000
Subject: [PATCH] =double checking schema outputs for legacytattooremoval

---
 inc/registrar/fields/RepeaterField.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/inc/registrar/fields/RepeaterField.php b/inc/registrar/fields/RepeaterField.php
index 601634a..5168712 100644
--- a/inc/registrar/fields/RepeaterField.php
+++ b/inc/registrar/fields/RepeaterField.php
@@ -11,11 +11,11 @@
 	protected string $add_label = 'Add Row';
 	protected string $row_label = 'New Item';
 
-	public function setAdd_label(string $label):void
+	public function setAddLabel(string $label):void
 	{
 		$this->add_label = $label;
 	}
-	public function getAdd_label():string
+	public function getAddLabel():string
 	{
 		return $this->add_label;
 	}
@@ -33,7 +33,7 @@
 		}
 		return true;
 	}
-	public function setRow_label(string $label):void
+	public function setRowLabel(string $label):void
 	{
 		if (str_contains($label, '{{')) {
 			if (!$this->checkFieldVariables($label)) {
@@ -43,7 +43,7 @@
 
 		$this->row_label = $label;
 	}
-	public function getRow_label():string
+	public function getRowLabel():string
 	{
 		return $this->row_label;
 	}

--
Gitblit v1.10.0