diff --git a/src/Traits/RevisionOptions.php b/src/Traits/RevisionOptions.php index 201154d..4590664 100644 --- a/src/Traits/RevisionOptions.php +++ b/src/Traits/RevisionOptions.php @@ -110,14 +110,14 @@ public function registerCacheTagsToFlush(array $tags): self /** * Undocumented function * - * @param bool $searchable + * @param bool $indexable * @param array $indexableKeys * @param string $titleKey * @return self */ - public function setIndexable(bool $searchable, array $indexableKeys = [], string $titleKey = ''): self + public function setIndexable(bool $indexable, array $indexableKeys = [], string $titleKey = ''): self { - $this->isIndexable = $searchable; + $this->isIndexable = $indexable; $this->indexableKeys = $indexableKeys; $this->titleKey = $titleKey;