new struct md files

This commit is contained in:
team 1
2026-05-04 19:15:22 +02:00
parent 1af158c8a9
commit 5b066d8f8b
109 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# RetrieX Vocabulary Hotfix
This patch fixes a runtime error introduced by the vocabulary centralization patch.
## Fixed error
`array_key_exists(): Argument #2 ($array) must be of type array, App\Config\DomainVocabularyConfig given`
## Root cause
`NdjsonHybridRetrieverConfig::raw()` still checked `$this->vocabulary` as if it were an array. After the vocabulary refactor, `$this->vocabulary` is a `DomainVocabularyConfig` object. Effective vocabulary fallback is already resolved before `raw()` is called, so this second `array_key_exists()` check was invalid and unnecessary.
## Changed file
- `src/Config/NdjsonHybridRetrieverConfig.php`
## After applying
Clear Symfony cache before testing.