Skip to content

Commit 377111f

Browse files
committed
Fix class scope
1 parent c121ae2 commit 377111f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Model/Validator/FilterValidator.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct(FilterInterface $filter, PropertyInterface $property
4040
? '($value !== null && (!is_' . implode('($value) && !is_', $filter->getAcceptedTypes()) . '($value)))'
4141
: ''
4242
) . sprintf(
43-
' || (($value = call_user_func([%s::class, "%s"], $value)) && false)',
43+
' || (($value = call_user_func([\%s::class, "%s"], $value)) && false)',
4444
$filter->getFilter()[0],
4545
$filter->getFilter()[1]
4646
),

0 commit comments

Comments
 (0)