We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef3570 commit 7c1b5abCopy full SHA for 7c1b5ab
src/DependencyInjection/Configuration.php
@@ -52,7 +52,7 @@ public function getConfigTreeBuilder(): TreeBuilder
52
->scalarNode('page_limit')
53
->defaultNull()
54
->validate()
55
- ->ifTrue(static fn (mixed $v): bool => null !== $v && !is_int($v))
+ ->ifTrue(static fn (mixed $v): bool => null !== $v && !\is_int($v))
56
->thenInvalid('The page_limit must be an integer or null.')
57
->end()
58
->beforeNormalization()
0 commit comments