mirror of
https://github.com/Codappix/search_core.git
synced 2024-11-25 04:16:11 +01:00
TASK: Fix call to non existing method
This commit is contained in:
parent
6d7199ccf2
commit
0122dd88e4
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class IndexFactory implements Singleton
|
||||||
foreach (['analyzer', 'filter'] as $optionsToExpand) {
|
foreach (['analyzer', 'filter'] as $optionsToExpand) {
|
||||||
if (isset($configuration['analysis'][$optionsToExpand])) {
|
if (isset($configuration['analysis'][$optionsToExpand])) {
|
||||||
foreach ($configuration['analysis'][$optionsToExpand] as $key => $options) {
|
foreach ($configuration['analysis'][$optionsToExpand] as $key => $options) {
|
||||||
$configuration['analysis'][$optionsToExpand][$key] = $this->prepareOptions($options);
|
$configuration['analysis'][$optionsToExpand][$key] = $this->prepareAnalyzerConfiguration($options);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue