From 308f1e586d625f912c093933d759c4557444d8c1 Mon Sep 17 00:00:00 2001 From: Keith Andrews Date: Tue, 24 Mar 2026 14:36:35 -0400 Subject: [PATCH] Update description for 'exists' validation rule Removed references to database attributes that should not be public. --- src/Extracting/ParsesValidationRules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Extracting/ParsesValidationRules.php b/src/Extracting/ParsesValidationRules.php index 98546306..afd6cf93 100644 --- a/src/Extracting/ParsesValidationRules.php +++ b/src/Extracting/ParsesValidationRules.php @@ -781,7 +781,7 @@ protected function processRule($rule, $ruleArguments, array &$parameterData, arr break; case 'exists': - $parameterData['description'] .= " The {$ruleArguments[1]} of an existing record in the {$ruleArguments[0]} table."; + $parameterData['description'] .= " Must match an existing stored value."; break;