Skip to content

Commit

Permalink
Rename genre parameter to genreName
Browse files Browse the repository at this point in the history
  • Loading branch information
usox committed May 7, 2023
1 parent 3c0c1f6 commit f5e43de
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface GetRandomSongsDataProviderInterface extends V1161DataProviderInterface
/**
* Returns a list of random songs
*
* @param string|null $genre Name of the requested genre, e.g. "Symphonic Thrash Metal"
* @param string|null $genreName Name of the requested genre, e.g. "Symphonic Thrash Metal"
*
* @return Traversable<array{
* id: int|string,
Expand All @@ -30,7 +30,7 @@ interface GetRandomSongsDataProviderInterface extends V1161DataProviderInterface
public function getRandomSongs(
?string $musicFolderId,
?int $limit = 10,
?string $genre = null,
?string $genreName = null,
?int $fromYear = null,
?int $toYear = null
): Traversable;
Expand Down

0 comments on commit f5e43de

Please sign in to comment.