Skip to content

Commit 7c1b5ab

Browse files
committed
cs fix
1 parent 5ef3570 commit 7c1b5ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DependencyInjection/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getConfigTreeBuilder(): TreeBuilder
5252
->scalarNode('page_limit')
5353
->defaultNull()
5454
->validate()
55-
->ifTrue(static fn (mixed $v): bool => null !== $v && !is_int($v))
55+
->ifTrue(static fn (mixed $v): bool => null !== $v && !\is_int($v))
5656
->thenInvalid('The page_limit must be an integer or null.')
5757
->end()
5858
->beforeNormalization()

0 commit comments

Comments
 (0)