public function __construct()

in src/WorkplaceSearch/Schema/FacetValue.php [34:40]


	public function __construct(string $type)
	{
		if (!in_array($type, ['value'])) {
			throw new InvalidArgumentException('The $type parameter must be one of these values: value');
		}
		$this->type = $type;
	}