clean up with constants

This commit is contained in:
heyethereum
2024-07-18 08:28:10 +08:00
parent 686c4f939e
commit b966597ca6
8 changed files with 35 additions and 27 deletions

View File

@@ -16,8 +16,8 @@ public class PhoneVerificationService {
public PhoneVerificationService(PhoneRepository phoneRepository) {
this.phoneRepository = phoneRepository;
}
public void insertDB(PhoneEntity PhoneEntity) {
phoneRepository.save(PhoneEntity);
public void insertDB(PhoneEntity phoneEntity) {
phoneRepository.save(phoneEntity);
}
}