Skip to content

Commit bc45bf2

Browse files
committed
#100913
1 parent cf8d461 commit bc45bf2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Concerns/InteractsWithIndex.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ public function indicesRefresh()
8181
return $this->resolveClient()->indicesRefresh($this->indexName());
8282
}
8383

84-
public function indicesSearchAnalyzers()
84+
public function indicesReloadSearchAnalyzers()
8585
{
86-
return $this->resolveClient()->indicesSearchAnalyzers($this->indexName());
86+
return $this->resolveClient()->indicesReloadSearchAnalyzers($this->indexName());
8787
}
8888

8989
public static function query(): SearchQuery

src/ElasticClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function indicesRefresh(string $indexName)
9292
return $this->client->indices()->refresh(['index' => $indexName]);
9393
}
9494

95-
public function indicesSearchAnalyzers(string $indexName)
95+
public function indicesReloadSearchAnalyzers(string $indexName)
9696
{
9797
return $this->client->indices()->reloadSearchAnalyzers(['index' => $indexName]);
9898
}

0 commit comments

Comments
 (0)