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.
2 parents 4ddc91a + 42a1446 commit f2a8ff0Copy full SHA for f2a8ff0
src/Elasticsearch/Namespaces/IndicesNamespace.php
@@ -684,6 +684,17 @@ public function validateQuery(array $params = [])
684
return $this->performRequest($endpoint);
685
}
686
687
+ /**
688
+ * Alias function to getAlias()
689
+ *
690
+ * @deprecated added to prevent BC break introduced in 7.2.0
691
+ * @see https://github.com/elastic/elasticsearch-php/issues/940
692
+ */
693
+ public function getAliases(array $params)
694
+ {
695
+ return $this->getAlias($params);
696
+ }
697
+
698
/**
699
* Endpoint: indices.get_alias
700
*
0 commit comments