Skip to content

Commit

Permalink
Merge pull request #1 from j-tap/fix/typo-type
Browse files Browse the repository at this point in the history
fix (client/ModSearchOptions) fixed typo in type of setModLoaderType
  • Loading branch information
pavog authored Jan 26, 2024
2 parents 026e8b4 + 145ef02 commit 68dabf6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Client/Options/ModSearch/ModSearchOptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,10 @@ public function getModLoaderType(): ?ModLoaderType
}

/**
* @param int|null $modLoaderType
* @param ModLoaderType|null $modLoaderType
* @return $this
*/
public function setModLoaderType(?int $modLoaderType): static
public function setModLoaderType(?ModLoaderType $modLoaderType): static
{
$this->modLoaderType = $modLoaderType;
return $this;
Expand Down Expand Up @@ -270,4 +270,4 @@ public function setPageSize(int $pageSize): static
$this->pageSize = $pageSize;
return $this;
}
}
}

0 comments on commit 68dabf6

Please sign in to comment.