Skip to content

Commit

Permalink
Update AbstractTermsAggregation.php (#1866)
Browse files Browse the repository at this point in the history
The phpDoc "@see" tag should be in lowercase, otherwise an error is detected
  • Loading branch information
AngelikLy committed Nov 5, 2020
1 parent 91f421f commit d09884c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Aggregation/AbstractTermsAggregation.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function setMinimumDocumentCount(int $count): self
/**
* Filter documents to include based on a regular expression.
*
* @See https://www.elastic.co/guide/en/elasticsearch/reference/current/regexp-syntax.html for syntax
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/regexp-syntax.html for syntax
*
* @param string $pattern a regular expression, following the Regexp syntax
*
Expand All @@ -37,7 +37,7 @@ public function setInclude(string $pattern): self
/**
* Filter documents to include based on a list of exact values.
*
* @See https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#_filtering_values_with_exact_values_2
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#_filtering_values_with_exact_values_2
*
* @param string[] $values
*
Expand All @@ -51,7 +51,7 @@ public function setIncludeAsExactMatch(array $values): self
/**
* Set the aggregation filter to use partitions.
*
* @See https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#_filtering_values_with_partitions
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#_filtering_values_with_partitions
*
* @return $this
*/
Expand All @@ -78,7 +78,7 @@ public function setExclude(string $pattern): self
/**
* Filter documents to exclude based on a list of exact values.
*
* @See https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#_filtering_values_with_exact_values_2
* @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations-bucket-terms-aggregation.html#_filtering_values_with_exact_values_2
*
* @param string[] $values
*
Expand Down

0 comments on commit d09884c

Please sign in to comment.