name = $name; $this->references = $references; } public function getType(): string { return $this->type; } public function getName(): string { if (empty($this->name)) { return 'fulltextkey_'.implode('_', array_map('strtolower', $this->references)); } return $this->name; } public function getReferences(): array { return $this->references; } public function isUnique(): bool { return false; } }