D
Size: a a a
S)
$this->users->get($this->getUser()->getId());
$this->em->flush();
есть такой код в контроллере беру с базу и сразу делаю flush! public function get($id): User
{
if (!$user = $this->repo->find($id)) {
throw new DomainException('User not found');
}
return $user;
}
вот код репо!