From d22f9c09d7b57df5304bb60f60caf739e7b45bb1 Mon Sep 17 00:00:00 2001 From: Michael Thomas Date: Sat, 9 Mar 2024 12:02:47 -0500 Subject: [PATCH] fix(RuleAction): add return type to `getValue` --- app/Models/RuleAction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/RuleAction.php b/app/Models/RuleAction.php index cf088a9275..a6f8d44c71 100644 --- a/app/Models/RuleAction.php +++ b/app/Models/RuleAction.php @@ -95,7 +95,7 @@ class RuleAction extends Model ); } - public function getValue(array $journal) + public function getValue(array $journal): string { $expr = new ActionExpression($this->action_value); return $expr->evaluate($journal);