From bf312c639aa7ab854b961d88d46ccf243747adb3 Mon Sep 17 00:00:00 2001 From: Casper Bloemendaal Date: Sat, 15 Nov 2025 22:26:29 +0100 Subject: [PATCH] Change type hint from 'string|ExternalReference' to 'mixed' --- src/Attributes/Validation/In.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Attributes/Validation/In.php b/src/Attributes/Validation/In.php index 6040e6d7..2607b414 100644 --- a/src/Attributes/Validation/In.php +++ b/src/Attributes/Validation/In.php @@ -32,7 +32,7 @@ public function getRule(ValidationPath $path): object|string } $this->values = array_map( - fn (string|ExternalReference $value) => $this->normalizePossibleExternalReferenceParameter($value), + fn (mixed $value) => $this->normalizePossibleExternalReferenceParameter($value), Arr::flatten($this->values) );