test email signup flow

This commit is contained in:
Yisroel Baum 2026-08-03 20:22:50 +03:00
parent a95903ed05
commit 9945163a2f
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
12 changed files with 631 additions and 0 deletions

View file

@ -45,6 +45,13 @@ class FakeUserRepository implements UserRepository
return null;
}
public function update(User $user): User
{
$this->users[$user->getId()] = $this->copy($user);
return $this->copy($user);
}
private function copy(User $user): User
{
return new User(