/**
  * Returns and blocks an account
  *
  * @param phoneNumber the phone number of the account to be blocked
  * @return true if the account is blocked
  */
 public boolean returnPhone(PhoneNumber phoneNumber) {
   PhoneAccount pa = getAccount(phoneNumber);
   pa.block();
   return pa.isBlocked();
 }