mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-04-01 01:25:39 +00:00
update method names
This commit is contained in:
parent
6752b7b93e
commit
2f06c2a7e5
3 changed files with 13 additions and 13 deletions
|
|
@ -31,7 +31,7 @@ class TorrentLocalesRepository extends ServiceEntityRepository
|
|||
;
|
||||
}
|
||||
|
||||
public function findLastTorrentLocales(int $torrentId): ?TorrentLocales
|
||||
public function findLastTorrentLocalesByTorrentId(int $torrentId): ?TorrentLocales
|
||||
{
|
||||
return $this->createQueryBuilder('tl')
|
||||
->where('tl.torrentId = :torrentId')
|
||||
|
|
@ -43,7 +43,7 @@ class TorrentLocalesRepository extends ServiceEntityRepository
|
|||
;
|
||||
}
|
||||
|
||||
public function findTorrentLocales(int $torrentId): array
|
||||
public function findTorrentLocalesByTorrentId(int $torrentId): array
|
||||
{
|
||||
return $this->createQueryBuilder('tl')
|
||||
->where('tl.torrentId = :torrentId')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue