Skip to content

Commit

Permalink
change variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
nivv committed Jun 19, 2024
1 parent f4b8fc8 commit a3e3099
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Traits/RevisionOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit a3e3099

Please sign in to comment.