Jake Vanderwerf
8 days ago 3b83905603d44b1a08f8b2b36a605808ce686ad6
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;
   }