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 25b4785 commit 6b01bddCopy full SHA for 6b01bdd
src/ai-bundle/config/options.php
@@ -529,7 +529,7 @@
529
->info('The ratio between semantic (vector) and full-text search (0.0 to 1.0). Default: 1.0 (100% semantic)')
530
->defaultValue(1.0)
531
->validate()
532
- ->ifTrue(fn ($v) => $v < 0.0 || $v > 1.0)
+ ->ifTrue(static fn ($v) => $v < 0.0 || $v > 1.0)
533
->thenInvalid('The semantic ratio must be between 0.0 and 1.0.')
534
->end()
535
0 commit comments