email); $existingUser = $this->userRepository->findByEmail($email); if ($existingUser !== null) { return; } $this->userRepository->create(new CreateUserDto( email: $email, passwordHash: $this->passwordHasher->hash($request->password), )); } }