From 59eb5408670203fa0c157c385d8f24bd4c7468a2 Mon Sep 17 00:00:00 2001 From: Chirag Chhatrala Date: Fri, 13 Dec 2024 14:17:17 +0530 Subject: [PATCH] Remove ray --- api/app/Service/Forms/FormLogicConditionChecker.php | 1 - 1 file changed, 1 deletion(-) diff --git a/api/app/Service/Forms/FormLogicConditionChecker.php b/api/app/Service/Forms/FormLogicConditionChecker.php index a366843d..b2d6035f 100644 --- a/api/app/Service/Forms/FormLogicConditionChecker.php +++ b/api/app/Service/Forms/FormLogicConditionChecker.php @@ -308,7 +308,6 @@ private function textConditionMet(array $propertyCondition, $value): bool return $this->checkLength($propertyCondition, $value, '<='); case 'matches_regex': try { - ray('matches_regex', $propertyCondition['value'], $value); return (bool) preg_match('/' . $propertyCondition['value'] . '/', $value); } catch (\Exception $e) { ray('matches_regex_error', $e);