Skip to content

Commit

Permalink
Merge pull request #58 from AbdullahFaqeir/master
Browse files Browse the repository at this point in the history
- Added setExists() method to Collection.
  • Loading branch information
AbdullahFaqeir authored Apr 29, 2024
2 parents 4e41737 + 7bee1a8 commit 50fc208
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,18 @@ public function getSynonyms(): Synonyms
return $this->synonyms;
}

/**
* Set collection exists flag.
*
* @param bool $exists
*
* @return void
*/
public function setExists(bool $exists): void
{
$this->exists = $exists;
}

/**
* @return bool|null
*/
Expand Down

0 comments on commit 50fc208

Please sign in to comment.