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 d6c4375 commit 9401362Copy full SHA for 9401362
src/ai-bundle/config/options.php
@@ -542,7 +542,7 @@
542
->info('The ratio between semantic (vector) and full-text search (0.0 to 1.0). Default: 1.0 (100% semantic)')
543
->defaultValue(1.0)
544
->validate()
545
- ->ifTrue(fn ($v) => $v < 0.0 || $v > 1.0)
+ ->ifTrue(static fn ($v) => $v < 0.0 || $v > 1.0)
546
->thenInvalid('The semantic ratio must be between 0.0 and 1.0.')
547
->end()
548
0 commit comments