Skip to content

Commit 1cc1393

Browse files
committed
Fix cs
1 parent e5d6530 commit 1cc1393

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Validator/Naming.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ public function isValid(mixed $value): bool
9999
"''" => self::CONSECUTIVE_APOSTROPHE,
100100
];
101101

102-
$filter = static fn(mixed $datum, int|string|null $key): bool => is_string($key) && str_contains($value, $key);
102+
$filter = static fn(mixed $datum, int|string|null $key): bool
103+
=> is_string($key) && str_contains($value, $key);
103104
$error = Finder::first($messageTemplates, $filter);
104105

105106
if (is_string($error)) {

0 commit comments

Comments
 (0)