You are here

public function Facet::setMinCount in Facets 8

Sets the minimum count of the result to show.

Parameters

int $min_count: Minimum count.

Overrides FacetInterface::setMinCount

File

src/Entity/Facet.php, line 958

Class

Facet
Defines the facet configuration entity.

Namespace

Drupal\facets\Entity

Code

public function setMinCount($min_count) {
  $this->min_count = $min_count;
}