Remove redundant docblock

This commit is contained in:
Matthias Gutjahr 2021-10-15 14:35:10 +02:00 committed by thrillfall
parent 7cc459a46d
commit 1a3e385387
2 changed files with 0 additions and 10 deletions

View File

@ -38,11 +38,6 @@ class EpisodeActionMapper extends QBMapper
}
/**
* @param string $episodeIdentifier
* @param string $userId
* @return EpisodeActionEntity|null
*/
public function findByEpisodeIdentifier(string $episodeIdentifier, string $userId) : ?EpisodeActionEntity
{
$qb = $this->db->getQueryBuilder();

View File

@ -30,11 +30,6 @@ class EpisodeActionRepository {
return $episodeActions;
}
/**
* @param string $identifier
* @param string $userId
* @return EpisodeAction|null
*/
public function findByEpisodeIdentifier(string $identifier, string $userId): ?EpisodeAction {
$episodeActionEntity = $this->episodeActionMapper->findByEpisodeIdentifier($identifier, $userId);