Remove redundant docblock
This commit is contained in:
parent
7cc459a46d
commit
1a3e385387
|
@ -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();
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue