mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2025-01-10 15:07:53 +00:00
update method names
This commit is contained in:
parent
ffa59d6f82
commit
6752b7b93e
@ -21,7 +21,7 @@ class UserRepository extends ServiceEntityRepository
|
||||
parent::__construct($registry, User::class);
|
||||
}
|
||||
|
||||
public function findOneByIdField(int $id): ?User
|
||||
public function getUser(int $id): ?User
|
||||
{
|
||||
return $this->createQueryBuilder('u')
|
||||
->where('u.id = :id')
|
||||
|
@ -63,7 +63,7 @@ class UserService
|
||||
|
||||
public function get(int $id): ?User
|
||||
{
|
||||
return $this->userRepository->findOneByIdField($id);
|
||||
return $this->userRepository->getUser($id);
|
||||
}
|
||||
|
||||
public function identicon(
|
||||
|
Loading…
Reference in New Issue
Block a user